DEV Community

Masihur Rahman Maruf
Masihur Rahman Maruf

Posted on

Locator Strategy: XPath

Preface:

One of the most challenging task in automating Web application using Selenium WebDriver is finding Web element. Selenium WebDriver supports a number of locator strategies-

  • Id
  • CSS
  • XPATH
  • Class Name
  • Name
  • Tag Name
  • Links Text
  • Partial Links Text

Among all the locator strategies Id is the best locator, as a standard, Id is unique in a web page. But in real life nothing is perfect. In real life scenario you will hardly get Id in every element. Here comes the need for the rest of the locator strategies.

Keeping this in mind I am going to write a series of blogs regarding locator strategies. In this blog I will try to focus on XPath Basics.

XPath:

XPath, the XML path language, is a query language for selecting nodes from an XML document. The XPath language is based on a tree representation(hierarchical) of the XML document, and provides the ability to navigate around the tree, selecting nodes by a variety of criteria. XPath has been adopted by a number of XML processing libraries and tools, many of which also offer CSS Selectors, another W3C standard, as a simpler alternative to XPath.

Locating elements with XPath works very well with a lot of flexibility. However, this is the least preferable locator strategy due its slow performance. One of the important differences between XPath and CSS is, with XPath we can search elements backward or forward in the DOM hierarchy while CSS works only in a forward direction. This means that with XPath we can locate a parent element using a child element. Remember XPath is a case sensitive language.

All the major browsers support XPath as HTML pages are represented as XHTML documents in DOM and used by Selenium WebDriver for locating elements. There are a number of tools you can use to find out XPath. For Firefox browser Firebug and XPath Checker Add-on and for Chrome XPath Helper and Toggle XPather.
XPath Expression:

XPath expression generally defines a pattern in order to select a set of nodes. XPath uses path expression to select nodes or list of nodes from an XML/html document. This path can be of two type:

  • Absolute Path
  • Relative Path

Absolute path means to specify every single node to select a node inside a hierarchical document. It always starts from root node. Here is an example:

/html/body/div[2]/div/div[4]/div/ul/li[3]/a/span

It is relatively faster then Relative path. But the XPath expression may be very lengthy. More over each of those nested relationships will need to be present 100% of the time, or the locator will not work. For these reasons use of Relative XPath expressions are encouraged.

In Relative XPath expression you can start from the node of your choice. The above absolute path can be written in the following relative path:

//div[@id='navigation']/ul/li[3]/a/span

In this blog, my prime focus will be to demonstrate the Relative XPath.
Expression: “/” & “//”
You may notice from above two example that I sometime used “/” and sometimes “//”. This is a very important point to understand. A single slash ‘/’ anywhere in XPath signifies to look for the element immediately inside its parent element. A double slash ‘//’ signifies to look for any child or any grand-child (descendant) element inside the parent element. In the following two example it will be more clear.

.//div[@id='products']/a/img

Look carefully in the above example, here I am trying to find an image tag from html document, which is the child of tag ‘a’. And tag a is the child of div tag. The same image tag can be found by:

.//div[@id='products']//img

Here I am trying to find an image tag which is the descendant of tag div.

Expression: “.” & “..”

You may have noticed that in every example I have used “.”. This is used to specify current node in XPath.
“..” is used to move one step up in the document tree, that is it will find the parent of current node. An example will make it more clear:

.//div[@id='products']/..

This expression will find the parent node of the current node.

Expression: “@”

“@” is used to select attribute in the document tree.
In the above example I specify attribute id with “@” and the value products inside ‘ ’.

Expression: “*”

XPath support wildcard like “*”. Sometimes it is of much use to find a Relative path. Let’s see an example:

.//*[text()='Home']

This wildcard can be used in place of attribute too.

.//a[@*='Home']

In this case I am trying to find an element which has an attribute with value ‘home’. In this case I don’t care about the attribute name. You will not use it very often. But its good keep it as an option.
Here in this section I am going to illustrate to most handy trick of XPath. Most of the times you will face issues when the locator’s properties are dynamically generated. And now a days petty much all the web application follows this strategy. Here comes the real challenge to deal with all the issue. Following section will give you concept about how to deal with such situations.

Read the following section carefully and try to understand and implement these tricks.

Expression using keyword “contains”:

“contains()” is a function that take two arguments, attribute name and attribute value. Let’s see an example:

.//div[contains(@id, 'search')]

Here I am finding a div tag which contains an attribute named ‘id’, in which the value contains ‘search’. It doesn’t need to be exactly the ‘search’ but the pattern needs to match. Function ‘contains()’ match attribute name with value by matching pattern.
Here is another use of function ‘contains()’:

.//span[contains(text(), 'Hot')]

This expression finds a span tag which contains ‘Hot’ as text in it.
Expression using keyword “text()”:
In previous example you saw, I used function ‘text()’. Let’s have a deeper look into function ‘text()’. It will find out a specific tag which has specific text in it. Here is an example:

.//span[text()= 'Home']

As I said this expression will find a span tag with text ‘Home’.

Expression using keyword “starts-with()”:

Like function ‘contains()’, ‘starts-with()’ also take two arguments, attribute name and attribute value. Let’s look it in an example:

.//div[starts-with(@class, 'width')]

Here I am trying to find a div tag where there is an attribute ‘class’ that starts with pattern ‘width’. This function also find element by matching pattern.
Another example:

.//span[starts-with(text(), 'Gift')]

As you saw earlier in ‘contains()’ function I used ‘text()’ function to find text inside that tag. That can be also done with function ‘starts-with()’ .

Conclusion:

In this blog, I focused on a number of the tricks and techniques that you will use daily as a Test Automation Engineer. There is no end of learning. You can learn more about XPath. Next time I will try to focus on some advance topic in XPath. Till then Practice…

Latest comments (2)

Collapse
 
cyr1l profile image
cyr1l

Great article. There are online tools to check and generate XPath expressions:
extendsclass.com/xpath-tester.html

Collapse
 
gautamraju15 profile image
ray_v101

hey i am stuck with this, please help me
stackoverflow.com/q/59986563/5956254