Reputation: 4942
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
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