在Chrome浏览器中使用Selenium点击方法的问题

时间:2015-11-12 14:22:42

标签: java selenium

我遇到了点击Chrome浏览器的问题。我已经使用了这里建议的代码:

wait.until(ExpectedConditions.elementToBeClickable(elementToClick)); 
((JavascriptExecutor) driver).executeScript("arguments[0].click();", elementToClick); 

但是当我尝试填写表单时,似乎没有点击弹出日历的字段。相同的代码在Firefox驱动程序中运行良好。发生的错误如下:

org.openqa.selenium.NoSuchElementException: no such element 
(Session info: chrome=46.0.2490.86).

我使用的是最新版本的chromedriver.exe。我正在使用ID点击该字段。 有人可以帮我解决这个问题。?。

0 个答案:

没有答案