summaryrefslogtreecommitdiff
path: root/docker/selenium/launch_selenium_test
blob: 0ae67098a717b5ed40cb021cf9389fedc4186e0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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