I am trying to migrate my existing selenium tests with Nunit to MBunit so that I can run the tests in parallel using selenium grid. I've added the attributes

[assembly: DegreeOfParallelism(8)]
[assembly: Parallelizable(TestScope.All)]

to assemblyinfo.cs and added references to Gallio.dll and MBUnit.dll to the C# project. The problem is that when I run the tests using gallio, the tests fail citing "ERROR: No sessionId provided. Most likely your original newBrowserSession command failed."
Can anybody help me with this error.

Thanks,
Vamyip

link|improve this question

72% accept rate
how are you starting the browser? – AutomatedTester Oct 5 '10 at 13:20
I have kept the setup function in a separate project inside the same solution. This function reads configuration from and xml file and then creates an instance of ISelenium using the configuration read from xml. Then, selenium.start() command is given(in the same function itself). This function is called in the setup() function of the class containing test cases. I am ready to modify my code if needed. Thanks for your reply - – vamyip Oct 6 '10 at 5:43
feedback

1 Answer

Most likely the problem is that you're having stateful tests. When parallelizing tests, try to isolate them so that they don't depend on instance variables that are set on each SetUp.

See these questions about parallelizing Selenium tests:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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