- Sellj
- Posts : 3
Join date : 2012-09-28
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
Regards,
Sellj
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>
...
- Code:
WebElement findGarField = driver.findElement(By.xpath("//button[contains(text(),'suchen')]"));
- Code:
WebElement findGarField = driver.findElement(By.cssSelector("input[type='button']"));
Regards,
Sellj
- Sellj
- Posts : 3
Join date : 2012-09-28
Re: Element cannot be found with xpath expression
Fri Sep 28, 2012 8:29 pm
Solved by using
Other proposals are still welcome!!!
- Code:
By.cssSelector("span.jkl span input[value='Bäume suchen']")
Other proposals are still welcome!!!
- Anupam Jain
- Posts : 5
Join date : 2012-10-04
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
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
Permissions in this forum:
You cannot reply to topics in this forum