I'm using Selenium grid with a couple of virtual machines. So each machine is one node.
I'm trying to start a selenium test that will end up on one of the machines (due to capabilities) and then start the same test again at the same time. So the same test should be running in two instances on the same node.
If I do this in Chrome, it will finish the first test and then start the second test. In Firefox it will open two browsers, but often one of the tests will randomly get connection errors. In Safari it's like Chrome except sometimes it will open just a blank browser.
I have maxSessions on 3 in my node configuration files. So I don't see why this doesn't work with 3 tests at the same time. The tests themselves run fine. Any ideas?