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

SESHADRI KOLLASESHADRI KOLLA
4 min read

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:

  1. Absolute XPath

  2. 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.

AxisDescriptionExample
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 or class 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']
//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(), and text() for robust locators.

  • Use XPath axes to navigate complex HTML structures.

  • Always prefer simple and maintainable XPath expressions.

0
Subscribe to my newsletter

Read articles from SESHADRI KOLLA directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

SESHADRI KOLLA
SESHADRI KOLLA