Last active
December 16, 2015 06:49
-
-
Save tommeier/5393925 to your computer and use it in GitHub Desktop.
Setting up IE8 on the hypervisor via Mac OSX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * 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