使用WebDriver,InternetExplorerDriver单击<input type =“image”/>

时间:2010-12-20 15:09:58

标签: webdriver

我试图使用webdriver点击图像输入类型,但它不起作用。 HTML代码:

<input type="image" onclick="validationAndSubmit('next'); return false;" alt="Continue" src="/subscriptions/versions2/commonlab/images/buttons/continue.gif" name="continue">

我用来点击的代码是:

driver.findElement(By.name("continue")).click();

我可以调用下面的Javascript,但这不是我的意图。

((JavascriptExecutor)driver).executeScript("validationAndSubmit('next'); return false;");

我想尽可能地模拟最终用户体验。

如何点击图片输入。

感谢 积木

0 个答案:

没有答案