Skip to content

Instantly share code, notes, and snippets.

@tommeier
Last active December 16, 2015 06:49
Show Gist options
  • Save tommeier/5393925 to your computer and use it in GitHub Desktop.
Save tommeier/5393925 to your computer and use it in GitHub Desktop.
Setting up IE8 on the hypervisor via Mac OSX
node.bat
@echo off
SET SERVER=http://192.168.0.27:4444/grid/register
SET VERSION=8
java -jar selenium-server-standalone-2.*.*.jar -role node -hub %SERVER% -nodeConfig node.json -browser "browserName=internet explorer,platform=WINDOWS,version=%VERSION%,maxInstances=1"
---------
node.json:
{
"configuration":
{
"registerCycle":60000,
"register":true,
"cleanUpCycle":10000,
"timeout":30,
"maxSession":1,
}
}
---------------
hub.json:
{
"host": null,
"port": 4444,
"newSessionWaitTimeout": 120000,
"servlets" : [],
"prioritizer": null,
"capabilityMatcher": "org.openqa.grid.internal.utils.DefaultCapabilityMatcher",
"throwOnCapabilityNotPresent": true,
"nodePolling": 10000,
"unregisterIfStillDownAfter":120000,
"cleanUpCycle": 10000,
"browserTimeout": -1,
"timeout": 0,
"maxSession": 5
}
* Download IE8 image http://www.microsoft.com/en-us/download/details.aspx?id=11575
* Extract locally
* use VMWare vCenter Convertor Standalone
* Choose to select from third party image
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment