我在Internet Explorer中使用Selenium RC。我用HTML编写了一些测试用例。如何在HTML中编写Test Suite,包括我在HTML中的测试用例?我想在IE和Windows XP / Windows 7中使用Selenium RC运行HTML测试套件。我该怎么办?
答案 0 :(得分:4)
在Selenium IDE 1.8版中,右键单击“测试用例”部分,然后选择“添加测试用例”选项添加所有HTML测试用例。 然后选择“文件>保存测试套件”选项,以HTML格式保存此测试套件。 在此之后,只需创建一个包含以下内容的.bat文件即可执行此HTML测试套件。
java -jar selenium-server.jar -port 4444 -htmlSuite“* chrome”“http://www.google.com/”“C:\ Selenium \ TestSuite.html”“C:\ Selenium \ TestSuiteResult.html” 暂停
答案 1 :(得分:1)
创建HTML测试套件:
打开Selenium IDE
记录并创建2个TC(在我的情况下为i)google1.html和ii)google2.html)
档案 - >将测试套件保存为 - >将文件另存为“GoogleTestSuite.html”)
执行Test Suite:
打开命令行/终端 - >转到selenium-server(.jar)所在的位置 - >运行以下命令:
java -jar selenium-server-standalone-2.0rc2.jar -port 4444 -htmlSuite“* iexplore”“http://www.google.com/”“C:\ Selenium \ GoogleTestSuite.html”“C:\ Selenium \ TestSuiteResult。 HTML“
注意:运行后将创建TestSuiteResult.html,其中包含测试结果