Last active
November 8, 2016 14:21
-
-
Save lazytesting/a35e837367d141a75268b052a8f45d20 to your computer and use it in GitHub Desktop.
Revisions
-
lazytesting revised this gist
Nov 1, 2016 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -2,11 +2,13 @@ param ( [string]$instances = 10 ) docker rm -f selenium-hub docker run --restart=always -d -p 4444:4444 --name selenium-hub selenium/hub:3.0.0-dubnium $i=0 while($i -ne $instances) { docker rm -f chromedriver-$i docker run --restart=always -d --link selenium-hub:hub --name=chromedriver-$i selenium/node-chrome:3.0.0-dubnium $i++ } -
lazytesting revised this gist
Oct 31, 2016 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -8,4 +8,5 @@ param ( while($i -ne $instances) { docker run -d --link selenium-hub:hub --name=chromedriver-$i selenium/node-chrome:3.0.0-dubnium $i++ } -
lazytesting created this gist
Oct 31, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ param ( [string]$instances = 10 ) docker run -d -p 4444:4444 --name selenium-hub selenium/hub:3.0.0-dubnium $i=0 while($i -ne $instances) { docker run -d --link selenium-hub:hub --name=chromedriver-$i selenium/node-chrome:3.0.0-dubnium }