WebDriver HtmlUnitDriver NoSuchElementException
我正在使用 Webdriver 来测试我的 Web 应用程序。当我使用 FireFoxDriver 或 ChromeDriver 时,一切似乎都正常。当我使用 HtmlUnitDriver 时,事情开…
在 Selenium WebDriver (Selenium 2) 中处理警报
driver.findElement(By.xpath("//input[@value='添加']")).click() //Pops out an Alert and program stops, does not continue 如何点击提醒? ~~~~~…
需要修改 HTTP 标头以启用 Selenium 2.0 的代理身份验证
它需要在 HTTP 请求中注入额外的标头以启用代理身份验证。例如 代理授权:基本 dGVzdDp0ZXN0, 其中 dGVzdDp0ZXN0 是 base64 登录名和密码。 在 Selen…
当目标位于 IFrame 中时如何从 ChromeWebDriver 和 InternetExplorerWebDriver 调用 JavaScript
我正在使用 Selenium 2b1 并在 Firefox(MacOS 和 Windows)上获得良好的结果。我们希望对 IE 和 Chrome 运行相同的测试。在为 ChromeDriver 添加了几…
如何从 Selenium WebDriver 驱动 Firebug
我想在通过 WebDriver 运行测试时捕获 Firebug 的网络面板输出。我正在考虑使用 NetExport 将信息转储到 har 文件中。当使用“driver.get()”显示特定…
Selenium 远程控制和 Selenium 服务器有什么区别?
在Selenium下载页面上,有一个指向Selenium RC(远程控制)的链接)。 在另一个 Selenium 下载页面上,有 Selenium RC 的链接1.0.3,以及Selenium 2 S…
使用 Selenium 的 htmlunit 驱动程序时出现问题
我正在使用带有 selenium 2 的 htmlunit 驱动程序,但是当在我的测试中进行以下调用时: driver.get(startPage) 当我调用 driver.getPageSource() 时…
Selenium 测试后的数据库清理
在我使用 Maven 运行一堆 Selenium (jUnit4) 测试后,我想进行数据库清理(删除它们插入的内容等)。这是一个在 Tapestry/Spring/Hibernate 和旧数据…
如何通过 Python 使用 HTMLUnit 驱动程序和 Selenium?
我如何告诉 Selenium 使用 HTMLUnit? 我在后台运行 selenium-server-standalone-2.0b1.jar 作为 Selenium 服务器,并使用“pip install -U selenium…
Selenium IDE 向下箭头键
我一直试图让我的硒测试来模拟向下箭头键的按下。 我只是使用 html 格式进行测试,并使用 typeKeys 作为命令,正确找到目标,并且对于我放入 \40 的值…
如何使用 RemoteWebDriver 指示 Firefox 配置文件
查看 Selenium 2.0 (alpha 7) 源代码,似乎可以通过功能 API 设置 RemoteWebDriver 的 Ff 配置文件。但目前尚不清楚如何做到这一点。 有什么想法吗?…
在assertEquals()中使用正则表达式不起作用
我在assertEquals() 语句中使用正则表达式时遇到问题。这是声明。 Assert.assertEquals("regexp:*TST-*[0-9]{5}", driver.getTitle()) 但我收到此错误…
waitForCondition 给出缺失;语句前错误
我已经查看了所有示例,但使用 waitForCondition 时仍然遇到问题。这是我的代码。 WebDriverBackedSelenium seleniumWD = new WebDriverBackedSeleniu…
Selenium 不会关闭带有日志的浏览器窗口
当我在 Selenium 2 中运行测试时,我以 selenium.close() 结束selenium.stop()。在以前的版本中,它关闭了包含测试应用程序的窗口和包含测试日志的窗…