从CMD运行Selenium IDE测试用例

时间:2015-12-15 20:45:15

标签: java selenium selenium-ide

我准备从命令行运行Selenium IDE测试用例,并使用以下命令将结果重定向到日志文件:

java -jar C:\Selenium\selenium-server-standalone-2.41.0.jar -multiwindow  -htmlSuite "*firefox" "http://newtours.demoaut.com" "C:\Selenium\Invalid_Login.html" "C:\selenium\logs\hi.html"

我使用* .bat文件运行上面的内容,但它对我不起作用,因为它只是打开firefox,显示我没有运行它的IDE面板和代码。

你能帮忙吗?

谢谢!

1 个答案:

答案 0 :(得分:2)

首先,您需要在C:\Selenium\文件夹中包含以下所有内容:

  • selenium server standalone .jar file
  • YourTestSuite.html
  • YourTestCase.html
  • 使用您(或多或少)提到的命令创建的
  • .bat文件

java -jar C:\Selenium\selenium-server-standalone-2.41.0.jar -htmlSuite "*firefox" "http://newtours.demoaut.com" "C:\Selenium\YourTestSuite.html" "C:\Selenium\logs\hi.html"

解决您的设置问题的步骤:

  1. 由于我无法说明它是什么,请确保Invalid_Login.html是您的实际测试套件,而不是您的测试用例。
  2. 根据您的浏览器版本使用selenium server独立jar文件版本。对于最新版本的浏览器,您需要在测试中使用最新的selenium server独立jar文件