In last article i mentioned you how to locate the Web Element with id, Name, LinkText, Partial LinkText, CSS Selectors, Class Name and Tag Name. We use FireBug add-one to use these 7 locators to locate the Web Element on Web Page. Now we are talking about XPath expression. Which is also a type of Locator. We need FirePath add-ons to use it.
XPath can be identify in 2 ways
1. Absolute XPath: Absolute XPath is identify and generated from the root node. In Absolute XPath a prefix "/" is added.
/html/body/div/div/div/div/form/fieldset/div/input[@id='email']
let me show you a snapshot how to get it
Below is the image for which i will write down the various method to write Relative XPath
a. When you click on the FirePath always you have a XPath. For this a XPath is showing
XPath can be identify in 2 ways
1. Absolute XPath: Absolute XPath is identify and generated from the root node. In Absolute XPath a prefix "/" is added.
/html/body/div/div/div/div/form/fieldset/div/input[@id='email']
let me show you a snapshot how to get it
2. Relative XPath: In Relative Xpath the node will be from where you want to start and it start with the "//". In Relative Xpath we do not need to start from the root node.
Below is the image for which i will write down the various method to write Relative XPath
Below is the code that showing in above screen shot
<div id="gaia_firstform" class="form-panel first valid">
<div class="slide-out ">
<div class="input-wrapper focused">
<div id="identifier-shown"><div>
<label class="hidden-label" for="Email">
Enter your email</label>
<input id="Email" type="email" autofocus="" spellcheck="false" value="" placeholder="Enter your email" name="Email"/>
<input id="Passwd-hidden" class="hidden" type="password" spellcheck="false"/>
</div>
</div>
<span id="errormsg_0_Email" class="error-msg" role="alert"/>
</div>
a. When you click on the FirePath always you have a XPath. For this a XPath is showing
.//*[@id='Email']
b. By using tag name and attribute
//input[@id='Email']
//input[@type='email']
//input[@name='Email']
//input[@placeholder='Enter your email']
c. to locate the element by using XPath where some text is visible on the web page
Comments
Post a Comment