Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JAVA - How to use xpath in selenium

i have this html code:

<select name="category" id="category">
    <option value="0">&laquo;Seleziona la categoria&raquo;</option>
    <option value='1' style='background-color:#ddd' disabled="disabled" id='cat1' >-- VEICOLI --</option>
    <option value='2'  id='cat2' >Auto</option>
</select>

and i have to select the WebElement identified by the tag option with text Auto. I try some solution like:

d.findElement(By.xpath("/select[@id=category]/option[@id=cat2]")).click();
d.findElement(By.xpath("/select[@id=category]/option[text()='Auto']")).click();
d.findElement(By.xpath("//select[@id=category]/option[Auto]")).click();

but everyone gives me:

Exception in thread "main" org.openqa.selenium.NoSuchElementException: Unable to locate element: {"method":"xpath","selector":"/select[@id=category]/option[@id=cat2]"} ( and other xpath i tried)
Command duration or timeout: 1.52 seconds
For documentation on this error, please visit: http://seleniumhq.org/exceptions/no_such_element.html

what is the right syntax? can someone help me?

like image 441
Jayyrus Avatar asked May 12 '12 18:05

Jayyrus


1 Answers

You don't have your XPath syntax right. You need quotes round the text attribute values you're matching against. Try:

d.findElement(By.xpath("//select[@id='category']/option[@id='cat2']")).click();
like image 106
Malcolm Smith Avatar answered Sep 18 '22 06:09

Malcolm Smith