Skip to content

Instantly share code, notes, and snippets.

@pascencio
Created July 18, 2017 22:18
Show Gist options
  • Save pascencio/8a5084163d7c4e55746587a9feb32a6d to your computer and use it in GitHub Desktop.
Save pascencio/8a5084163d7c4e55746587a9feb32a6d to your computer and use it in GitHub Desktop.
Start selenium node with IExplorer WebDriver
@echo off
set WEBDRIVER_HOME="c:\put\your\webdriver\home"
set PATH=%WEBDRIVER_HOME%;%PATH%
set GRID_HOST="put your GRID HOST here"
set GRID_PORT=4444
java -jar selenium-server-standalone-3.4.0.jar -role node -hub http://%GRID_HOST%:%GRID_PORT%/grid/register
@echo on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment