How to use relative xpath for locating a web-element by particular Attribute

0 votes
I am trying to use Xpath. Using absolute Xpath is very lengthy and complicated. I want to know as how can I use relative Xpath by using Attribute to locate a web-element?

Thank you in advance.
Dec 24, 2018 in Selenium by Anjali
• 2,950 points
4,477 views

2 answers to this question.

0 votes

Hello @User,

Taking a simple example of facebook,

You want to locate the Email or Phone. 

Let's Inspect the element and see what it has for us.

<input type="email" class="inputtext" name="email" id="email" data-testid="royal_email">

Here we have many attributes to use such as type, class, name, id , data-testid.

You can directly use ID using

driver.findElement(By.Id("email"));

As you want to use the XPath lets see how to make use of relative Xpath.

the expression will come out to be as 

//input[contains(@id,'email')]

which will be used as follows:

driver.findElement(By.xpath("//input[contains(@id,'email')]"));

This way you can use relative Xpath to locate an element using an Attribute.

Hope this helps.

answered Dec 24, 2018 by Nabarupa
0 votes
Xpath=//tagname[@attribute='value']
answered Sep 3, 2020 by Sri
• 3,190 points

Related Questions In Selenium

0 votes
2 answers

How can we use JavaScript Executor to click and enter data to a web element in Selenium?

WebElement element = driver.findElement(By.id("abcd")); // Let the ...READ MORE

answered Mar 22, 2020 in Selenium by Lakshmi Sarvepalli
3,160 views
0 votes
1 answer
0 votes
1 answer

How can I select a particular node within the XPath node sets by index?

There is no concept of 'i' in ...READ MORE

answered Apr 21, 2018 in Selenium by king_kenny
• 3,710 points
4,340 views
0 votes
2 answers

Finding WebDriver element with Class Name in java

The better way to handle this element ...READ MORE

answered Apr 10, 2018 in Selenium by nsv999
• 5,500 points
12,711 views
0 votes
2 answers

Problem while using InternetExplorerDriver in Selenium WebDriver

enable trusted connection  in internet explorer by ...READ MORE

answered Aug 31, 2020 in Selenium by Sri
• 3,190 points
8,608 views
0 votes
1 answer

Geo-location microphone camera pop up

To Allow or Block the notification, access using Selenium and you have to ...READ MORE

answered May 11, 2018 in Selenium by Samarpit
• 5,910 points
6,680 views
0 votes
2 answers

How to use such xpath to find web elements

xpath are two types. 1) Absolute XPath:    /html/b ...READ MORE

answered Sep 3, 2020 in Selenium by Sri
• 3,190 points
7,551 views
0 votes
1 answer

How to use Chropath for locating web element in selenium?

Hey Angad, you can follow these steps ...READ MORE

answered Aug 22, 2019 in Selenium by Abha
• 28,140 points
20,087 views
0 votes
2 answers
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP