Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
Sellj
Posts : 3
Join date : 2012-09-28

Element cannot be found with xpath expression Empty Element cannot be found with xpath expression

Fri Sep 28, 2012 5:10 pm
Hello,

we have the following html code and would like to click the button

Code:
<body>
<div class="abc">
<div class="def  ghi">
      <span class="jkl" onclick="javascript action">
            <span>
                  <input type="button" value="Bäume suchen">
            </span>
      </span>
...
by using

Code:
WebElement findGarField = driver.findElement(By.xpath("//button[contains(text(),'suchen')]"));
However, the element cannot be located. When using

Code:
WebElement findGarField = driver.findElement(By.cssSelector("input[type='button']"));
the element can be found but the page has more than one button. So we would like to find that specific button. How can we modify the xpath expression so the correct button can be found?

Regards,

Sellj
avatar
Sellj
Posts : 3
Join date : 2012-09-28

Element cannot be found with xpath expression Empty Re: Element cannot be found with xpath expression

Fri Sep 28, 2012 8:29 pm
Solved by using

Code:
By.cssSelector("span.jkl span input[value='Bäume suchen']")

Other proposals are still welcome!!!
avatar
Anupam Jain
Posts : 5
Join date : 2012-10-04

Element cannot be found with xpath expression Empty Re: Element cannot be found with xpath expression

Thu Oct 04, 2012 9:15 pm
Hi

I am running a script recorded by Selenium IDE using Web Driver but in the script i am unable to click on a button(via Web Driver).

driver.findElement(By.xpath("//div[@onclick='validateForm();']")).click();



any work arounds possible. Please help
Sponsored content

Element cannot be found with xpath expression Empty Re: Element cannot be found with xpath expression

Back to top
Permissions in this forum:
You cannot reply to topics in this forum