Closed mse-rspenceley closed 8 years ago
The binary downloader doesn't start selenium. It only downloads binaries.
Does it try to start selenium up twice if you remove the binary downloader
I know it doesn't, the antrun task does that for me.
Yes, if I remove the downloader it runs twice; it runs the antrun tasks, then the downloader, then the antrun task again. Happens even if the antrun task is just 'echo Hello' or whatever
So it doesn't sound like a bug the the binary downloader (or standalone server plugin) then...
I would guess that your problem could be that you are using ant to start stuff up in the test compile phase and then selenium will try and run tests in the test, or integration test has. Some of what you have configured selenium to do may clash with what the antrun plugin is doing.
Hi
I'm using Maven to not only download the WebDrivers, but also to launch Selenium. My POM file contains the following:
When I run mvn test, it fires up the Selenium Hub and Node, then downloads the binaries, then tries to fire up Selenium again, obviously failing because its already running (I don't want to turn off failonerror for that). Doesn't seem to matter how I change phases, this always happens. Any idea?