Selenium Grid Hub 2.25.0
OS: Ubuntu under KDE
Browser: Firefox 3.6
Selenium methods invocing with the help of http://code.google.com/p/php-webdriver-bindings/
A node is run in this way:
java -jar selenium-server-standalone-2.25.0.jar -role node -hub http://localhost:3500/grid/register -browser browserName=**firefox36**,version=3.6, firefox_binary=/root/ff/firefox_3_6/firefox-bin,maxInstances=50,platform=LINUX -maxSession 50 -port 3501
So the name of browser is changed from firefox to firefox36. With this configuration tests are run without visual browser launching.
The main question is: What kind of mode is this? And how can I assign a custom firefox profile to it?
I've tried to assign a profile in different ways wich are working when a browser name isn't changed.
This mode works fine for me so I'm finding a way to use a custom firefox profile with it. When I launch a node with normal browser name like firefox then a real browser is launching and few threads work fine. But when the number of threads is more than 30 then I get an error with failure of access to chrome driver despite I call a firefox.
Please help.