Hi I am new to JUnit testing.
I run my JUnit program having selenium code it doesn't run from top to down, it runs randomly.
However i want to execute the program in order, functions like login, creation, updation, Delete.
But, it's running like this
I want to run this program in order. Send me your valuable suggestions.
You can set the classes order of JUnit using test suite:
And set the tests order within the class using @FixMethodOrder (since JUnit 4.11)