zorglub76
zorglub76

Reputation: 4942

Is there a GUI for running JUnit/Selenium tests

I have some Selenium tests written in Java and run as JUnit tests. I run them from Jenkins, but now client would like to have access to them and run them individually.

Is there a standalone application for running JUnit tests that would enlist all the tests and allow users to create their own suites?

Upvotes: 1

Views: 660

Answers (2)

Swagin9
Swagin9

Reputation: 1002

My team has written an application in JavaFX that we run our Selenium WebDriver scripts through. We're currently working on putting it on a webpage for other users to access and run. We are pointing the tests to the Grid server on a virtual machine which sends them to clients on several other virtual machines (so many users can use it at once if needed).

Upvotes: 0

user2677479
user2677479

Reputation: 31

Try Eclipse. You just need to add the Junit and Selenium jars.

Upvotes: 2

Related Questions