views:

62

answers:

1

I have built a couple of test cases as stand alone python classes using Selenium. I can run each of them using Selenium RC. Ultimately I want to use Selenium Grid to run all of the test cases.

How would I do this?

Do I need some kind of wrapper to hold of of the python test cases together? How do I get Selenium Grid to run a collection of these?

Thanks for your help.

A: 

I would suggest having a look at running your tests in Parallel using Nose

There is documentation on how to get it running here

AutomatedTester