我想指定xpath到我的网页的元素。
<select id=groupSelect> <option value="data" >First value</option> <option value="data" >second value</option> </select>
我想获取“第一个值”,即选项内的文本。但我不知道如何获取文字。
By.xpath("//select[@id='groupSelect']/option[@value=???']"))
selenium可以处理select/option在一个很好的和方便的方式。
selenium
select/option
这是通过可见文本选择选项的方法(java中的示例):
Select select = new Select(driver.findElement(By.id("groupSelect"))); select.selectByVisibleText('First value');
如果您仍然想要基于xpath的解决方案,则可以检查选项value和text:
value
text
By.xpath("//select[@id='groupSelect']/option[@value='data' and . = 'First value']")
或按索引获取:
By.xpath("//select[@id='groupSelect']/option[1]")
或者您可以同时检查两者。