I have multiple nodes and few of them are same OS and Browser combinations(I had it like that some reason).
Now, How do I differentiate on which node to run in my code
wd = webdriver.Remote(command_executor = 'http://127.0.0.1:4444/wd/hub',desired_capabilities=DesiredCapabilities.CHROME)
remote driver above will run Chrome browser machine
wd = webdriver.Remote(command_executor = 'http://127.0.0.1:4444/wd/hub',desired_capabilities=DesiredCapabilities.FIREFOX)
remote driver above will run Firefox machine
what if I have another machine with same browser and I want my another test run on that machine.
How do I differentiate?