Selenium webdriver无法定位元素

时间:2016-01-11 02:05:03

标签: java html selenium-webdriver automation

在添加现有记录后,我一直在尝试获取此状态消息的元素。试图让它发挥作用仍然没有运气。有关获得此元素的任何想法?任何答案将不胜感激,谢谢!

enter image description here

UPDATE ::

我可以得到[10:45:02 - HR206]工作记录的元素已经存在我只需要的工作记录已经存在时间。

1 个答案:

答案 0 :(得分:1)

您是否尝试使用xpath = //ul[@id='currentMessage']/li

String message=driver.findElement(By.xpath("//ul[@id='currentMessage']/li")).getText();

谢谢