开发者

Selenium IDE - results.html

开发者 https://www.devze.com 2023-01-25 22:46 出处:网络
How report my test case results on selenium-ide. I don\'t want use selenium-rc. What command I sh开发者_如何转开发ould use to get results.html ?you can use File Logging add-on..With the help of this y

How report my test case results on selenium-ide. I don't want use selenium-rc. What command I sh开发者_如何转开发ould use to get results.html ?


you can use File Logging add-on..With the help of this you can store result of your test case


Use this command, you will get a report for your html suite execution in Selenium IDE

java -jar selenium-server.jar -htmlSuite "*chrome" http://www.example.com 
./testsuite.html results.html

Here are the argument:

  • selenium-server.jar - Selenium server path
  • -htmlSuite "*chrome" - Browser used for the test, Firefox is "*firefox"
  • http://www.example.com - base URL of your test
  • ./testsuite.html - html test suite path
  • results.html - path for storing results.html
0

精彩评论

暂无评论...
验证码 换一张
取 消