This repository was archived by the owner on Nov 29, 2018. It is now read-only.
This repository was archived by the owner on Nov 29, 2018. It is now read-only.
Document the "applicationName" capability #3660
Open
Description
Originally reported on Google Code with ID 3660
As said on https://groups.google.com/group/selenium-users/browse_thread/thread/3d1b0405c6e93653?hl=es&noredirect=true
There is an undocumented way to select a node in a grid to test your
application. You can use the "applicationName" capability to do this.
Currently, there is no way for Selenium to diference between 32 and
64 bits version of a given OS. So if you want to test with a specific
version you could setup the nodes as:
NODE1:
java -jar selenium-server-standalone-2.20.0.jar -role node -hub
http://HUB_IP:4444/grid/register -browser
browserName=firefox,version=11,maxInstances=1,platform=WINDOWS,applicationName=windows7_32bits_firefox_11
NODE2:
java -jar selenium-server-standalone-2.20.0.jar -role node -hub
http://HUB_IP:4444/grid/register -browser
browserName=firefox,version=11,maxInstances=1,platform=WINDOWS,applicationName=windows7_64bits_firefox_11
In your tests you have to add
"applicationName=windows7_32bits_firefox_11" to your desired
capabilities array.
It would be very nice this "undocumented" feature turns "oficial" by documenting and
maintaining it.
Reported by jaruzafa
on 2012-04-04 10:23:07