Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 Netbeans 中创建一个新项目,用于使用 Selenium 2 测试 Web 应用程序。我不知道如何开始。
Netbeans + Selenium 是否有任何简单的分步教程可以遵循?
我需要在 Netbeans 中创建什么类型的新项目才能运行测试?
查看“快速教程:Netbeans + Selenium + Hudson ”;它还包含一个屏幕截图。
另请参阅“ Selenium 初学者教程/专家提示”
在 IDE 中打开一个新的 java 项目。
在此处下载 Selenium 独立服务器
将 jar 文件放入 lib 并开始创建您的 Selenium 测试用例。
如果您想在 Chrome 上运行它,请在此处chromedriver.exe下载文件
chromedriver.exe
要在 IE 上运行,请在此处IEDriverServer.exe下载相应的位版本
IEDriverServer.exe
示例代码:
WebDriver driver = new FirefoxDriver(); driver.get("URL"); //Do some actions driver.quit();