如何从 Selenium IDE 迁移到 Selenium2/Selenium WebDriver
之前我总是只使用 Selenium IDE,现在应该迁移到 Selenium2/Selenium WebDriver。我应该安装什么并了解如何使用 Selenium2/Selenium WebDriver。我应…
如何通过 SendKeys 发送特殊字符?
我正在尝试在 Selenium2 中填写表格。 一个输入有一个自动完成功能,我想关闭它,最好通过在搜索词后发送 esc 来关闭。 即类似 driver.FindElement(By…
在 IE9 中使用 Selenium 捕获整个页面的屏幕截图
我正在尝试让 CaptureEntirePageScreenshot 适用于 IE9。我已经阅读了很多文档和维基来使其工作,但到目前为止没有任何对我有用。 所以我想我会直接使…
“类型错误:无法将字符串转换为整数”当尝试 CTRL 单击或 SHIFT 单击 watir-webdriver/selenium-webdriver 脚本时
我正在尝试在 Chrome 浏览器上使用 watir-webdriver/selenium-webdriver 在黄瓜脚本中选择定义为表的日期选择器中的多个项目。 日期选择器允许 Ctrl …
如何使用 Python 使用 Selenium 选择下拉菜单值?
我需要从下拉菜单中选择一个元素。 例如: Choose your fruits: Banana Mango 1) 首先我必须单击它。我这样做: inputElementFruits = driver.find_el…
Python Selenium 访问 HTML 源
如何使用 Python 中的 Selenium 模块获取变量中的 HTML 源? 我想做这样的事情: from selenium import webdriver browser = webdriver.Firefox() bro…
FindElement(By.Id) 不起作用
这是我第一次尝试使用 Selenium,我在使用“FindElement(By.Id”) 时遇到了麻烦。我的脚本使用了几个 By.Name 方法,并且它们工作正常。 这是我的代码…
C# 中的 Selenium 框架
Closed. This question is seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. It does not …
使用 selenium htmlunit 进行负载测试
有人使用过具有 TestNG 调用计数和线程池大小的 HTML 单元吗?我使用 TestNG 驱动所有 Selenium2 测试,并一直在多个线程中运行 HtmlUnit 测试作为轻…
RemoteWebDriver SetFileDetector 给出异常 org.openqa.selenium.UnsupportedCommandException:
我正在尝试使用 RemoteWebDriver 在 google chrome 中使用 webDriver 上传文件。 所以我使用 SetFileDetector(new LocalFileDetector()) 然后 driver.…
以编程方式将EnvironmentProperty设置为ChromeDriver
我正在无头中使用 SE2 和 firefoxDriver 运行测试 环境(Xvfb)。使用 FirefoxDriver 我可以非常设置 DISPLAY 环境属性 轻松: FirefoxBinary firefox…
Selenium 2 (WebDriver) 中 Selenium 1 (Selenium RC) 的 isTextPresent 等效项
Selenium 2 (WebDriver) 中没有 isTextPresent 使用 WebDriver 断言页面上某些文本存在的正确方法是什么?…
等待 webdriver 中的元素
我按照这里写的: WebDriver Selenium API:当 Element 明显存在时出现 ElementNotFoundErrorException! 我的代码看起来像: Function presenceOfEle…
使用 C# 的 Selenium Webdriver
我是 selenium webdriver 的新手,遇到了一些问题。 你们中的任何人都可以告诉我如何使用 Selenium webdriver 和 C# 从下拉列表中选择一个项目吗?…