1. Finding elements by XPATH and ID
2. Finding elements by XPATH and NAME
3. Finding elements by XPATH and LINK
4. Finding elements by XPATH and Text
Finding elements by XPATH and ID:-
Type //form[@id=’search_mini_form’]/div/input
Finding elements by XPATH and NAME:-
Type //input[@name=’q’]
Finding elements by XPATH and LINK:-
Click //a[@id=’navigation-top-cat-label-707′]
Click //ul[@id=’nav’]/li[3]/a
Click //a[@href=’https://www.rightstart.com/search/result/?ocat=707′]
Partial Match on Attribute Content:-
There are times where only part of the ID is dynamic. For example, if you wanted to access the element that has the text “This element has an ID that changes every time the page is loaded” in it, you will use //div[contains(@id,’time_’)]. This is due to the first part of the ID always being static. The locator could also use starts-with instead of contains to make the XPath query stricter in what is returned.
We can use two methods to find the elements with text
Syntax:- //element[text()=’inner text’].
Example for Starts with: for link Booster seats
//a[starts-with(text(),’Boost’)]
Example for contains: for link Car seat bases
//a[contains(text(), ‘Seat’)]
Finding elements by the text they contain can be quite useful when working with web pages that have been created dynamically.
Checkout Selenium Interview Questions
Contains:-
If we know part of the text then we have to use this command.
Syntax: //element[contains(text(),’inner text’)]
For the above example the command is :
//a[contains(text(),’Car Seat Bases’)]
Syntax:- //element[starts with(text(),’inner text’)]
If we know the starting of the text then we have to use this command.
For the above example the command is:
//a[starts-with(text(),’Boost’)]
locators are a way to tell selenium which specific element we want it to act on Why CSS
//input[@id=”myId”] vs css=input#myId
//input[@class=”myClass”] vs css=input.myClass
//input[@name=”myName”] vs css=input[name=myName] //*[@id=”myId”] vs css=#myId
//table[@id=”myId”]//tr[@class=”myClass”]//td[3] vs css=table#myId tr.myClass td:nth(3)
Our work-support plans provide precise options as per your project tasks. Whether you are a newbie or an experienced professional seeking assistance in completing project tasks, we are here with the following plans to meet your custom needs:
Name | Dates | |
---|---|---|
Selenium Training | Dec 24 to Jan 08 | View Details |
Selenium Training | Dec 28 to Jan 12 | View Details |
Selenium Training | Dec 31 to Jan 15 | View Details |
Selenium Training | Jan 04 to Jan 19 | View Details |
Madhuri is a Senior Content Creator at MindMajix. She has written about a range of different topics on various technologies, which include, Splunk, Tensorflow, Selenium, and CEH. She spends most of her time researching on technology, and startups. Connect with her via LinkedIn and Twitter .