Is there a good tutorial or does anyone have experience with setting this up ? I have a Testsuite.html which launches my tests in one browser atm. This is done in the integration-test lifecycle by the maven selenium plugin. I want to run my tests on multiple browsers. I couldn't find any documentation about selenium grid + maven. I hope somebody can help me.

Thanks in advance, kukudas

link|improve this question

67% accept rate
feedback

1 Answer

up vote 7 down vote accepted

Selenium Grid and maven are really not much different than Selenium and maven.

Grid is basically a drop-in replacement for selenium-rc. In our current setup we let the automated build system use Grid. It does this by simply changing the selenium-rc url (which is normally localhost:4444) to the grid's url.

Additionally we specify the browser string (*firefox, *iexplore, *opera or whatever) as a system property on the mvn command line, which we pick up when we initialize the selenium client libraries in our code.

So the way we've done it we basically set up 4 different build projects with different browser strings.

link|improve this answer
Btw.: Is it recommended to run the tests as html suits? i read a lot that this isn't actualy used its more like converting the code into java - junit. I think on one hand i have then more flexibility but on the other hand i have to convert my changes all the time unless it's minor changes. – kukudas Feb 5 '09 at 10:09
We only make java based junit tests. After a little initial investment, the flexibility you gain is tremendous. But we don't use the recorder, just firefox and firebug. – krosenvold Feb 5 '09 at 10:13
How do you launch hub ? Could this be done by the maven-selenium plugin ? Do you could provide a trivial sample? I did convert my test to junit, and start a selenium server with the maven plugin. Does startSeleniumSession() launches a RC ? I don't know how to launch the hub do i have to use ant? – kukudas Feb 5 '09 at 16:01
We just run hub standalone on a machine. Don't involve maven in starting hub, there's just needless pain down that path. And yes, hub starts with ant so just go with the flow and follow the hub guideline. – krosenvold Feb 5 '09 at 17:15
1  
I think it's time to ask another question on SO ;) – krosenvold Feb 6 '09 at 11:13
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.