我在Selenium IDE中创建了一个必须在每次其他测试之前执行的身份验证测试用例。我不想在测试套件中使用它们,因为如果我在身份验证测试用例中进行了一些更改,则需要更改使用它的每个测试用例套件。
运行Selenium RC Server时,有没有办法指定此测试用例依赖或测试用例执行顺序?类似的东西:
java -jar selenium-server-standalone-2.31.0.jar <path>\authentication_test_case.html <path>\application_feature1_test_case.html <path>\report.html
或者
java -jar selenium-server-standalone-2.31.0.jar <path>\authentication_test_case.html <path>\application_feature2_test_case.html <path>\report.html
我需要在身份验证测试用例中进行的更改不会影响依赖它的其他测试用例/套件。欢迎任何想法!
答案 0 :(得分:1)
我刚刚意识到如何使用测试套件在Selenium中指定此测试用例依赖项。只需要引用测试用例而不复制它的执行代码:
<td><tr><a href="<path>\authentication_test_case.html">Step 1 - Authentication</a></td></tr>
<td><tr><a href="<path>\application_feature1_test_case.html">Step 2 - Application Feature 1</a></td></tr>