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 have an idea how I can make sure that this doesn't happen?