offtheradar
offtheradar

Reputation: 35

Are there any tools with a GUI to manage Selenium Webdriver test runs and results?

Are there any tools with a GUI that allow managing Selenium Webdriver test execution and displaying pass/fail results on screen?

If not, are there any full test management tools like QC than can be integrated with Selenium to start tests and store results?

Upvotes: 1

Views: 703

Answers (1)

HemaSundar
HemaSundar

Reputation: 1293

Use Jenkins, which is a open source tool.

That would allow you to:

  • run different tests with different jobs
  • run the tests with headless browsers
  • integrate TestNG/Custom reports to track the results in HTML format.

Upvotes: 1

Related Questions