RemoteWebDriver IE 单击链接不起作用

发布于 2024-12-09 07:35:49 字数 565 浏览 0 评论 0原文

我正在使用 RemoteWebDriver 并尝试在 Internet Explorer 下的远程计算机上执行几个 UI 测试:

RemoteWebDriver driver = new RemoteWebDriver(new URL("http://127.0.0.1:4444/wd/hub"),  DesiredCapabilities.internetExplorer());`
driver.get("http://bing.com");
driver.findElement(By.id("sb_form_q")).sendKeys("Cheese");
driver.findElement(By.id("sb_form_go")).click();        

使用以下代码适用于 FireFox 和 Chrome,但不适用于 IE。如果我在本地计算机上运行普通的网络驱动程序,它就可以正常工作。有谁知道为什么会出现这种情况或者是否有解决方法?

我正在使用 Selenium-Server-Standalone-2.8.0 和 Selenium-Java-2.8.0 客户端驱动程序。

提前致谢。

I am using the RemoteWebDriver and trying to execute a couple of UI tests on a remote machine under Internet Explorer:

RemoteWebDriver driver = new RemoteWebDriver(new URL("http://127.0.0.1:4444/wd/hub"),  DesiredCapabilities.internetExplorer());`
driver.get("http://bing.com");
driver.findElement(By.id("sb_form_q")).sendKeys("Cheese");
driver.findElement(By.id("sb_form_go")).click();        

Using the following code works in FireFox and Chrome but not in IE. IF I run a plain web driver on my local machine it works fine. Does anyone know why this is the case or if there is a work around?

I am using Selenium-Server-Standalone-2.8.0 and the Selenium-Java-2.8.0 client drivers.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凝望流年 2024-12-16 07:35:49

我在使用 RemoteWebDriver 和 IE 功能进行单击时遇到问题。我通过使用 sendKeys(Keys.ENTER) 作为链接/按钮和 sendKeys(Keys.SPACE) 作为单选按钮/复选框来解决它。

I had problems with clicking using RemoteWebDriver and IE capabilities. I solved it by using sendKeys(Keys.ENTER) for links/buttons and sendKeys(Keys.SPACE) for radio buttons/checkboxes.

半衬遮猫 2024-12-16 07:35:49

尝试使用submit()而不是click()它应该可以工作。

try with submit() instead of click() it should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文