Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am pretty new in this area, so apologies for the question.
I am trying to run datadriven tests in parallel, using Selenium Grid2

here is my setup of the test:

    [Test]
    [Parallelizable]
    [Row("nl-NL")]
    [Row("fr-BE")]
      public void UsignUp(string locale)
    {
      //test to exexute

    }

When I run the test, 2 browser instances are starting, but they are entering the data in each other. So my tests are failing.

Does anyone has an idea how I can make sure that this is not happening?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.