Xpath is nothing but an XML path, and the developer used XPath to validate XML files. HTML also follows the same structures as XML so that we can apply XPath to HTML pages as well along with webdriberIO webdriver.
Hope reader is familiar with TryXpath and developer tools of browser which we use for inspecting elements and verify out xpaths
Xpath is nothing but sting expression which used to find the element(s) along with webdriberIO Webdriver, and other automation tools
We should give last priority to XPath among locators because Xpath is a little slow compared with other locators, if we are not able to find the element with id, name, linktext, CSS then only we should go for XPath
webdriberIO supports XPath 1.0 and XPath 2.0, 3.0 are not compatible with webdriberIO
In this tutorial, we are going to learn how to build xpaths and verify xpaths
Xpath follows straightforward syntax; please find below image for the XPath syntax
Xpath Syntax

HTML code Syntax

HTML code can have n-number of attributes, text and closing tag is not mandatory for a few elements
There are two kinds of xpaths
1. Absolute XPath
2. Relative XPath
Absolute Xpath

/ - point to the first node on the HTML document, it is HTML tag
Note: we are not going to focus on absolute XPath.
Relative Xpath

// - points to any node in the webpage
tagName - tag name is nothing but the name which is present after the < (angular bracket)
attribute - whatever is present inside < and > bracket except tagname is an attribute, any number of attributes can present in HTML code
attribute's value - it is corresponding value to the attribute, sometimes for boolean attribute developers may not specify any value; in those cases, HTML takes 'true' as default value.
Text - text is the value present inside > and <
Now let form the xpath for the above html code.
//a[@class='idle']
We can write Xpath based on Tagname, which is very simple.
Syntax for Xpath with Tagname : //tagName
<html>
<body>
<div id="pancakes">
<button type="button">Blueberry</button><br><br>
</div>
</body>
</html>
In the above code, there is a button present under div. we can write the XPath with tagname : //button
We may not see unique elements on the webpage other than on the login page.
Please save the below HTML file as composite-xpath.html on your local machine
<html>
<body>
<div id="pancakes">
<button type="button">Blueberry</button><br><>
<button type="button">Banana</button><br><br>
<button type="button">Strawberry</button><br><br>
</div>
</body>
</html>
Open above HTML file in chrome, and press F12 or right-click on the element and choose Inspect Elementor Press Ctrl+Shift+I
It may look like the below image once you open the chrome developer tool
Press Ctrl+F to verify Xpath, and write the XPath based on the XPath syntax.
Xpath based on the Tagname : //button

When you try the XPath with tagname, it shows three matches, so we cannot proceed as we want to find only one match. We must write an XPath expression which should have only one match. When we have a matching element only under one parent(this case), we should add an index to the XPath
Syntax for Xpath with Index : //tagName[index]
index must be covered with square('[',']') brackets. Index starts from 1 in xpath

Xpath for the elements :
Bluberry button- //button[1]
Banana button - //button[2]
Strawberry button -//button[3]
We can use index type XPath with webdriver when we have more matches under one parent; the index might not work if there are more parents.
Store below HTML in the local system and open it with chrome
<html>
<body>
<div id="pancakes">
<button type="button">Blueberry</button><br><br>
<button type="button" name='banana' >Banana</button><br><br>
<button type="button">Strawberry</button><br><br>
</div>
<div id="pancakes">
<button type="button">Apple</button><br><br>
<button type="button">Orange</button><br><br>
<button type="button">Grape</button><br><br>
</div>
</body>
</html>
Let's try to write XPath for Banana button, Xpath based on an index is //button[2], but it has two matches 1. Banana, 2.Orange.
With an index, we may not be able to solve this issue.
Let's consider other properties of the HTML element; banana has an attribute name, Now we have to form the XPath based on the attribute.
Xpath with Attribute ://tagName[@attribute='attribute value']
Xpath based on the Attribute is : //button[@name='banana'], this XPath shows only one match which is Banana button
You can add n number attributes in one XPath itself
Xpath with multiple Attributes://tagName[@attrib='attrib value'][@attrib2='attrib2 value']...
Can I use index along with attribute: yes, you can use, but the index will be useful only when matches are under a single parent
Xpath with Attribute and Index://tagName[@attribute='attribute value'][index]
We cannot expect an HTML element to have different or uniques properties all the time. Sometimes there is a chance that every element may have the same kind of attributes, In those cases, we cannot use Xpath with Attribute in webdriberIO webdriver
To handle such kind of cases we may need to take help of the parent element to find our actual element
Store the below code in HTML file and open it in chrome
<html>
<body>
<div id="berry">
<button type="button">Blueberry</button><br><br>
<button type="button">Banana</button><br><br>
<button type="button">Strawberry</button><br><br>
</div>
<div id="fruit">
<button type="button">Apple</button><br><br>
<button type="button">Orange</button><br><br>
<button type="button">Grape</button><br><br>
</div>
</body>
</html>
Let's write XPath for Orange, using the parent and child concept
The syntax for Xpath with parent and child

For Orange element we have to refet]r it parent div which has id attribute as fruit Xpath for the Orange: //div[@id='fruit']/button[2]
We have only one match for the XPath we have written.
Explanation for Xpath : //div[@id='fruit']/button[2]
// - look for any node which has 'div' as tagname and id as fruit, look for immediate child(/) node which has tagname as button and at the index of 2.
Sometimes we may have to handle the elements with the XPath index, but the index may give more than one match, which are under different parents; in these situations, the index might not help you. We may have to use Group index in this kind of scenarios
Group index puts all matches into a list and gives indexes them. So here we will not have any duplicates matches
Syntax : (//tagName)[index]
We have to use parenthesis to make an xpath into group XPath after it indexes the XPath
Store below HTML code into HTML file :
<html>
<body>
<div id="fruit"><br><br><br>
<button type="button">Blueberry</button><br><br>
<button type="button" >Banana</button><br><br>
<button type="button">Strawberry</button><br><br>
</div>
<div id="fruit">
<button type="button">Apple</button><br><br>
<button type="button" >Orange</button><br><br>
<button type="button">Grape</button><br><br>
</div>
</body>
</html>
Let's write XPath for Orange : (//button)[5]
There will be situations, where you may not be able to use any HTML property other than text present in the element
text() function helps us to find the element based on the text present in the element, text () function is case sensitive
<button type="button">Blueberry</button><br><br>
In the above code, the text is Blueberry, and we can write XPath using text () like below
xpath with text : //button[text()='Bluberry']
Note: we use @ sign for attributes, functions do not need @ sign
We can also match element(s) which have text in them with below XPath
xpath with text ://button[text()]
://button/text()
* -is the one of most used wild card character with xpath in webdriberIO webdriver, we can use it instead of the tag name and attribute
//* - matches all the elements present in the HTML (including HTML)
//div/* - matches all the immediate element(s) inside the div tag
//input[@*] - matches all the element(s) with input tag and have at least one attribute, attribute value may or may not present
//*[@*] - matches all the element(s) which have at least one attribute.
We may face scenarios where the given element may change it's position every time, so handle such kind of scenarios we have to go for dependent and independent xpaths
For example : Take any e-commerce website, search for a specific product and write xpath for that particular product, take rest for few days and then go and search for the same product, there could be a change in position of the product, to handle this we should use the dependent and independent concept
Scenario : Select the checkbox which is present in the same row as Protractor
| Select | Tool | Language |
|---|---|---|
| webdriberIO | Java | |
| Protractor | Typescript | |
| webdriberIO Bindings | Python | |
| QTP | VB |
Steps to solve the scenario:
1. Do not write the xpath for the checkbox, because checkboxes might change its position.
2. Based on the text present in the Protractor field, we have to write the xpath
2.1 we have to find the common parent for Protractor and Checkbox
3. Xpath to find the protractor : //td[text()='Protractor']
4. Now we should find the parent of Protractor element
5. We can find the parent of an element using /.. like in unix
6. Xpath for parent of Protractor : //td[text()='Protractor']/..
7. Check Protractor's parent is a common parent for Protractor and checkbox.
8. Yes, Protractor parent is a common parent for Protractor and checkbox
9. Now try to navigate to checkbox using checkbox properties
10. Checkbox has tagname as inpu : //td[text()='Protractor']/..//input
11. try the above xpath it will highlight the checkbox related to Protractor field
Here Protractor is independent, and the checkbox is dependent
Independent: It does not depend on any other element
Dependent : We have to find this based on the other element(Independent)
contains() function helps user to fins the element with partial values, or dynamically chaning values, contains verifies matches with portion of the value
contains function ://xpath[contains(@attribute, 'attribute value')]
//xpath[contains(@text(), 'attribute value')]
Example of below html:
<html>
<body>
<div id="fruit"><br><br><br><br><br><br><br><br><br><br><br>
<button type="button">Blue berry1234</button><br><br>
<button type="button" >Banana</button><br><br>
<button type="button">Straw</button><br><br>
<button type="button">berry</button><br><br>
<button type="button">Straw berry</button><br><br>
</div>
</body>
</html>
Xpath for the Blueberry : //button[contains(text(),'Blue')]
Xpath for the Banana : //button[contains(text(),'Ban')]
More Complex items:
In the same way, if you try to find XPath for Straw berry with //button[contains(text(),'Straw')], it finds the element with text Straw as well.
If you try with berry, you may get 'berry' element. So how to find the Straw berry button.
We can combne more than one contains functions like : //xpath[contains(text(), 'text1')][contains(text(), 'text2')]
Xpath for Strawberry is : //button[contains(text(),'Straw')][contains(text(), 'berry')]
Not only for text you can apply contains function for other properties as well Eg : //button[contains(@type,'but')]
Starts-with function matches the elements which property starting value
syntax ://xpath[starts-with(@attribute,'starting value')]
<button type="button">Straw berry</button><br><br>
Xpath for the Strawberry element ://button[starts-with(text(), 'Straw')]
Ends-with function matches the elements properties ending value
syntax ://xpath[ends-with(@attribute,'ending value')]
<button type="button">Straw berry</button><br><br>
Xpath for the Strawberry element : //button[ends-with(text(), 'berry')]
By default, automation tools take the first instance of the match; also, if we want to achieve the first element, we can use index [1]. But in some pages, we may not be able to see how many matches are present when the page is loading or on a dynamic page.
last() function in Xpath helps the user to find the last match of the element.
last function : //xpath[last()]
take the example of below HTML code
<html>
<body>
<div id="fruit"><br><br><br>
<button type="button">Blueberry</button><br><br>
<button type="button" >Banana</button><br><br>
<button type="button">Strawberry</button><br><br>
</div>
</body>
</html>
In the above, if we want to write xpath for the last element, it is easy we can say use index [3], but if the application is very large or dynamic, we cannot say how many elements are going to present.
So let's use last function in xpath : //button[last()] - points to the Strawberry button.
Position function helps the user to get the match at a particular index, using position we can get elements which are less than the position or greater than the position as well.
position function ://xpath[position()=2]
://xpath[position()<2]
://xpath[position()>2]
://xpath[position()=<2]] ...
Example : //button[position()=2]
Sometimes we may have a situation where we have found the element based on the attribute. We can use @ method for an attribute, but if the attribute values change every time lower to upper case or mix case value when page refreshes, in this @ method may not help us.
During such kind of situations, we must ignore the case(UPPER/lower). Below is the syntax to match the elements by ignoring case, the translate method helps us to perform this.
Syntax :// tagname[text(), 'sourceCaseContent', 'targetCaseContent'), 'value']
tagname - is the HTML tag used for the element like the label, a, span, div..
text() - text() value present in the element.
sourceCaseContent - We have to pass the Letter(s) which all we want to convert 'ABCD' so on.. we can also give only a few letters like 'agk' (sourceCaseContent could be UPPER/lower case)
targetCaseContent - We have to pass the Letter(s) to which we want to convert the SourceCaseContent, it could be in any case
value - the target value which we want to compare it could be any value, but it should be in target case (if the target case is UPPER then the value also should be in upper
Html code : <label id="aBcK" name='p'>SEleNiuM</label>
Xpath ://label[contains(translate(text(),'CDEILMNSU','cdeilmnsu'),'selenium')]
We can find the element based on the attribute value/text length in webdriberIO, the string-length() method helps us to form the xpath based on the element's attribute length.
yntax :// tagname[string-length(@attibute's name/text)= expectedLength]
tagname - is the HTML tag used for the element like the label, a, span, div..
@attribute's name - any attribute present in the element like id, name, src, href... text () - text() value present in the element.
expectedLength - numeric expected length of the attribute value or text value
Html code : <label id="twinkie" name='p'>selenium</label>
Xpath ://label[string-length(@id) = 7]
Xpath ://label[string-length(text()) = 8]
twinkie - 7 letters
selenium - 8 letters
We can form xpath based on the numeric attribute value / text present in the element with relational operators. For example, we can find the elements which have numeric text greater than 40 or less than 70 like so
Syntax :// tagname[@atrribute/function > expectedValue]
@atrribute/function - should result in numeric value
expectedValue - Must be a numeric value
Html code : <label id="50" name='p'>30</label>
Xpath 1 ://label[text()>20]
Xpath 2 ://label[@id()<70]
Xpath 3 ://label[@id()<70][text()>20]
XPath axes are used to identify elements that periodically change or refreshes it attributes by their relationship like parent, child, sibling, based on the independent element, whose properties do not change.
Axes refer to the node on which elements are lying relative to an independent element. We could traverse in both forward and reverse directions.
|
|
|
|
|
|
|
|
|
|
|
|
Save below code as HTML file
<html>
<head></head>
<body>
<div name='username'>
<label id="user">Username</label>
<input id="username" type="text">
</div>
<div name='password'>
<label id="pass">Password</label>
<input id="username" type="password">
</div>
</body>
</html>
The forward axis in XPath helps to find the element/node after the current or reference element (helps to find an element in the code which is below the current element in HTML file).
We can narrow down the matches by adding more details about the HTML element like tagnames, attributes.
self : It specifies the current element
attribute : It specifies the attributes of the current element.
Now let's narrow down to the element(s), which have an attribute id.
child : It specifies all child elements of the current element.
We can match the element with a particular tag or ids, below one matches the child element(s) which have input as a tag.
descendant : It specifies all the children and grandchildren elements
Narrow down to the descendant who has input as a tag
descendant-or-self : It specifies current or all the children and grandchildren elements
Narrow down to the child who has input as a tag; if the current element has an input tag, then this xpath matches that as well.
following-sibling : It specifies the following siblings of the current element. Siblings are at the same level as the current element and share its parent.
following : It specifies all elements that come after the current element, which includes elements of other div's as well.
Reverse axis in xpath helps to find the element/node before the current or reference element (helps to find an element in the code which is above the current element in HTML file)
We can narrow down the matches by adding more details about the HTML element like tagnames, attributes.
parent : It specifies the parent of the current element.
ancestor : It specifies the ancestors of the current element/nodes, which include the parents up to the root HTML.
Narrow the matches to the element(s) which has div as HTML tag by navigating to ancestors.
ancestor-or-self : It specifies the current element or all elements that come before the current element
Let's narrow down our search to the element which has tag as a body from the current element by navigating the reverse axis; if the current element is a body, then it matches the current element itself.
preceding-sibling : It specifies the element that comes before the current element
preceding : It specifies all elements that come before the current element (i.e. before it's opening tag).
I am Pavankumar, Having 8.5 years of experience currently working in Video/Live Analytics project.