Usage Of “maxInstances” In Grid 2 To Set Allowed Max Number Of Browser Instances

“maxInstances” is configuration parameter which is used during selenium grid 2 node configuration. Using “maxInstances” in selenium grid 2, We can set “how many max number of same browser instances are allowed to open and run software test at same time”. “maxInstances” tells node machine to not allow more than allowed instances on that specific … Read more

Selenium Grid 2 – Using @DataProvider To Run Parallel WebDriver Tests

In my previous post, We learnt how to execute selenium WebDriver single software automation test in multiple browsers in parallel using Selenium Grid 2. We had used “parameter” tag in testng.xml file to feed browser name in which your software automation test needs to run in parallel. Instead of using @Parameters, We can use @DataProvider … Read more

How To Use Selenium Grid 2 To Run WebDriver Test Cases In Parallel

Main advantage of selenium grid is we can run webdriver software test cases in parallel using selenium grid 2 environment to reduce software test execution time as described in THIS POST. Also It helps us to perform compatibility testing as it is supporting multiple browsers too. Earlier we have configured selenium grid 2 hub in THIS … Read more

How To Configure Selenium Grid 2 Node To Run WebDriver Test

As described In my EARLIER POST, Selenium grid 2 Is useful to execute webdriver software tests on multiple nodes In parallel. So we need to set up selenium grid 2 nodes for webdriver software test execution. But before that, Your selenium grid hub should be configured and in running mode as described in my PREVIOUS … Read more