Gridifying Seleniet
Download all files needed selenium-server-standalone-2.52.0.jar and if you want to run android tests too: selendroid-grid-plugin-0.17.0.jar selendroid-standalone-0.17.0-with-dependencies.jar selendroid-test-app-0.17.0.apk Start grid hub java -Dfile.encoding=UTF-8 -cp “selendroid-grid-plugin-0.17.0.jar:selenium-server-standalone- 2.52.0.jar” org.openqa.grid.selenium.GridLauncher -capabilityMatcher io.selendroid.grid.Selen droidCapabilityMatcher -role hub -host 127.0.0.1 -port 4444 Start nodes create a startwebnode.sh script with the following content: #!/bin/bash PORT=$1 java -jar selenium-server-standalone-2.52.0.jar -role node -hub http://127.0.0.1:4444/grid/register/ -port Read more about Gridifying Seleniet[…]