mirror of
https://github.com/google/blockly.git
synced 2026-01-09 18:10:08 +01:00
11 lines
281 B
Bash
Executable File
11 lines
281 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#check if selenium server is up running
|
|
pid=`lsof -ti tcp:4444`
|
|
if [ $? -eq 0 ]
|
|
then
|
|
kill -9 $pid
|
|
fi
|
|
java -jar -Dwebdriver.gecko.driver=../geckodriver -Dwebdriver.chrome.driver="chromedriver/chromedriver" ../webdriverio-test/selenium-server-standalone-3.9.1.jar &
|
|
|