我有一个在 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
我的需要是在身份验证测试用例中所做的更改不会影响依赖它的其他测试用例/套件。欢迎任何想法!