如何通过selenium web driver Java

时间:2016-11-17 17:44:24

标签: javascript java selenium selenium-webdriver

我正在尝试以下代码,但是错误“无法找到元素”

的System.out.println(driver.findElement(By.xpath( “// * [@ id中= '反应根'] /部分/主要/条/ UL /锂[2] /量程/跨度”) ).getText())

enter image description here

1 个答案:

答案 0 :(得分:0)

以下情况很好: - )

的System.out.println(driver.findElement(By.xpath(" .//* [@ ID ='反应根'] /部分/主要/条/报头/格[2] / UL /锂[2] /跨度/跨度"。))的getAttribute("标题&#34));

更短的XPath:

的System.out.println(driver.findElement(By.xpath(" //跨度[@id ='反应根'] //跨度[@title]" ))的getAttribute("标题&#34));