如何使用HTML TestSuite以及使用IE的Selenium RC上的testing用例

我在Internet Explorer中使用Selenium RC。 我用HTML编写了一些testing用例。 我如何在HTML中编写testing套件(包括我的testing用例)? 我想在IE和Windows XP / Windows 7中使用Selenium RC运行HTMLtesting套件。我该怎么做?

在seleniumium IDE版本1.8中,右键单击“测试用例”部分,选择“添加测试用例”选项,添加所有的HTML测试用例。 然后选择“文件>保存测试套件”选项,以HTML格式保存此测试套件。 在此之后只需创建一个带有以下内容的.bat文件即可执行此HTML测试套件。

java -jar selenium-server.jar -port 4444 -htmlSuite“* chrome”“ http://www.google.com/ ”“C:\ seleniumium \ TestSuite.html”“C:\ seleniumium \ TestSuiteResult.html”暂停

Selenium IDE>添加测试用例

要创建HTML测试套件:

  1. 打开seleniumium IDE

  2. 记录并创建2个TC(在我的情况下为i)google1.html和ii)google2.html)

  3. 文件 – >将测试套件保存为 – >将文件另存为“GoogleTestSuite.html”)

要执行测试套件:

  1. 打开命令行/终端 – >转到selenium-server(.jar)所在的位置 – >运行以下命令:

    java -jar selenium-server-standalone-2.0rc2.jar -port 4444 -htmlSuite“* iexplore”“ http://www.google.com/ ”“C:\ seleniumium \ GoogleTestSuite.html”“C:\ seleniumium \ TestSuiteResult.html”

注意:TestSuiteResult.html将在运行后创建,其中包含测试结果