Selenium:在selenium独立服务器上从命令行执行多个testcases / testsuite

时间:2016-12-08 08:59:23

标签: selenium selenium-ide webautomation

我见过许多例子,其中提供了使用以下命令在selenium中执行htmlSuite:

java -jar selenium-server-standalone-x.x.x.jar -htmlSuite "*firefox" "http://127.0.0.1:8080/webpage" "./testSuite.html" "result.html"

但我的要求与此类似略有不同

  1. 通过Selenium IDE(以html格式)记录的测试用例/测试套件很少。
  2. 运行Selenium服务器(从命令行)。
  3. 发送一个测试用例/测试套件以执行(从命令行)
  4. 执行后,浏览器不应该关闭。
  5. 执行一些操作(来自shell)
  6. 发送下一个testcase / testsuite以便在同一个浏览器会话中执行。
  7. 再次执行shell操作等等。
  8. 是否有可能以这种方式或最接近它的可能解决方案是什么?

1 个答案:

答案 0 :(得分:1)

您可以将Selenium与TestNG捆绑在一起以创建测试套件并一起运行整个套件。