summaryrefslogtreecommitdiff
path: root/docker/selenium/launch_selenium_test
diff options
context:
space:
mode:
Diffstat (limited to 'docker/selenium/launch_selenium_test')
-rwxr-xr-xdocker/selenium/launch_selenium_test27
1 files changed, 27 insertions, 0 deletions
diff --git a/docker/selenium/launch_selenium_test b/docker/selenium/launch_selenium_test
new file mode 100755
index 0000000..0ae6709
--- /dev/null
+++ b/docker/selenium/launch_selenium_test
@@ -0,0 +1,27 @@
+#!/bin/bash
+
+# Takes only the docker-machine's IP address, assuming that the
+# chrome-docker service runs on port 4444
+
+# FIXME use getopt
+TEMP=`getopt -o r: --long docker-ip: -n 'launch_selenium_test.sh' -- "$@"`
+eval set -- "$TEMP"
+
+if test "$1" != '--docker-ip'; then
+ IP=$(docker-machine ip)
+else
+ IP=$2
+fi
+
+
+# update wallet
+(cd $HOME/wallet-webex && git pull && ./configure && make)
+
+eval $(docker-machine env)
+# Yes, assume it's already running..
+docker restart big_heap
+
+# call python3 selenium script
+python3 $HOME/wallet-webex/selenium/test.py \
+ --ext-unpacked $HOME/wallet-webex \
+ --remote http://$IP:4444/wd/hub