I am writing some system test cases with selenium, an was wondering if there is a work around for running these tests without running the java app.
My process to run them is:
- I build my maven project
- I write a test
- Run the java application to start the localhost at 8080 port
- Run my test cases
I was wondering if there is a way not to do 3 as I am planing on deploying those test cases, and run them in jenkins.
P.S. If this question has been asked before, please point out where in comment.
Thank you