A Step-by-Step Guide to XPath in Selenium Web UI Testing

XPath (XML Path Language) is used in Selenium to navigate through elements in an XML document. It helps locate UI elements (buttons, text fields, links, etc.) on a web page when other locators (ID, Name, Class) are not available or reliable.
1. Types of XPath
XPath can be broadly classified into:
Absolute XPath
Relative XPath
1.1 Absolute XPath
Starts from the root element (
/html
) and goes down step by step.Uses a direct path.
Not recommended because even a small UI change can break the XPath.
โ Example:
/html/body/div[1]/div[2]/div[3]/button
๐จ Disadvantages:
If the UI structure changes, the XPath will break.
It is lengthy and difficult to maintain.
1.2 Relative XPath
Starts from anywhere in the document.
Uses
//
to find elements irrespective of their position.Recommended for Selenium testing because it is more flexible.
โ Example:
//button[text()='Login']
โ Advantage:
Works even if the UI structure changes.
More readable and maintainable.
2. XPath Syntax and Functions
2.1 XPath Axes
Axes help locate elements based on their relationships in the HTML DOM.
Axis | Description | Example |
parent:: | Selects the parent of the current node | //button[text()='Submit']/parent::div |
child:: | Selects children of the current node | //div[@id='menu']/child::ul |
following:: | Selects everything after the current node | //input[@id='username']/following::input |
preceding:: | Selects everything before the current node | //div[@class='footer']/preceding::div |
ancestor:: | Selects all ancestors (parent, grandparent, etc.) | //span[text()='Logout']/ancestor::div |
descendant:: | Selects all children, grandchildren, etc. | //div[@id='container']/descendant::button |
2.2 XPath Attributes and Conditions
XPath can use conditions to locate elements efficiently.
2.2.1 Basic Attribute Selection
โ Syntax:
//tagname[@attribute='value']
โ Example:
//input[@id='username']
2.2.2 Using Multiple Attributes
โ Syntax:
//tagname[@attribute1='value1' and @attribute2='value2']
โ Example:
//input[@type='text' and @name='email']
2.2.3 Contains() Function
Used when part of the attribute value is known.
โ Syntax:
//tagname[contains(@attribute, 'partialValue')]
โ Example:
//input[contains(@id, 'user')]
(Selects elements like id='username'
, id='user_input'
)
2.2.4 Starts-with() Function
Used when the attribute value starts with a specific text.
โ Syntax:
//tagname[starts-with(@attribute, 'startingText')]
โ Example:
//input[starts-with(@id, 'pass')]
(Selects id='password'
, id='passcode'
)
2.2.5 Text() Function
Used when selecting an element based on visible text.
โ Syntax:
//tagname[text()='ExactText']
โ Example:
//button[text()='Login']
2.2.6 Using OR & AND in XPath
OR
selects an element if at least one condition is true.AND
selects an element if all conditions are true.
โ Example (OR Condition):
//input[@id='email' or @name='user_email']
โ Example (AND Condition):
//input[@id='email' and @type='text']
3. Advanced XPath Examples
3.1 Finding nth Element
If there are multiple matching elements, we can select a specific one using position()
or indexing.
โ Example (First element in a list):
//input[@type='text'])[1]
โ Example (Last element in a list):
//input[@type='text'])[last()]
3.2 Navigating Using XPath Axes
โ Select the first sibling of a given element
//div[@class='menu']/following-sibling::div[1]
โ Select the last child of a parent element
//ul[@id='nav']/child::li[last()]
4. Best Practices for Writing XPath in Selenium
โ
Prefer Relative XPath over Absolute XPath.
โ
Use meaningful attributes (id
, name
, data-*
).
โ
Use contains()
, starts-with()
, or text()
instead of long attributes.
โ
Avoid using XPath that is too deep (//div/div/div[3]/button
).
โ
Use indexing only when necessary ((//button[@type='submit'])[1]
).
5. Handling Dynamic Elements with XPath
Some elements have dynamically changing attributes. To handle them:
Use
contains()
instead of exact values.Avoid using auto-generated
id
orclass
values.Use parent-child relationships.
โ Example:
//button[contains(@class, 'submit')]
(Selects <button class="btn-submit">Submit</button>
)
6. Writing XPath for Real-time Scenarios
Scenario 1: Click on a Button
//button[text()='Sign Up']
Scenario 2: Enter Text into a Field
//input[@placeholder='Enter your email']
Scenario 3: Select a Checkbox
//input[@type='checkbox' and @name='terms']
Scenario 4: Click on a Dynamic Link
//a[contains(text(), 'Learn More')]
7. Conclusion
XPath is powerful and flexible but should be used wisely.
Use Relative XPath over Absolute XPath.
Utilize functions like
contains()
,starts-with()
, andtext()
for robust locators.Use XPath axes to navigate complex HTML structures.
Always prefer simple and maintainable XPath expressions.
Subscribe to my newsletter
Read articles from SESHADRI KOLLA directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
