JAVA - How to use xpath in selenium

java, select, selenium, xpath

Solution

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();

Problem

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?

Original source

Related problems