I am using C#, MBunit and selenium Grid and I need to run the same scripts for 3 different environments Dev, QA and PROD. I launch 3 different remote controls in Selenium grid, but how can I pass different website url to those instances? I need one instance to Dev site, another to QA and another to PROD.
|
feedback
|
|
This is an example using TestNG. In your unit test file / script, you'll have something that looks like this:
To execute them in parallel, you'll need to configure a TestNG XML configuration file that will look something like this:
Then you run the XML file as a TestNG test, and assuming you have at least three Webdriver client nodes with the capabilities that match your defined WebDriver, these three tests will be sent to the hub, which will then send them out in parallel to the client nodes, which will use a different URL for each test execution. Hope this helps! | |||
|
feedback
|