Hello,
I'm using gradle to drive a Selenium grid (1 hub, 1 node currently). The registration process works fine and the first time I fire up my tests the setup behaves as expected. However, the hub does a few weird things after this.
1. Even though the gradle test run is finished the hub keeps sending the test instructions. So if I restart the node all the tests run again.
2. If I kill the hub the node reregisters itself and rerunning the tests works as expected for the first time, followed by the problems mentioned in point 1.
I'd like the control on the tests to be with Gradle or whatever other build system I'm using. Is there a command I might be missing to tell the hub to stop after a certain number of cycles?
Cheers.