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

# call python3 selenium script
python3 $HOME/wallet-webex/selenium/test.py \
  --ext-unpacked $HOME/wallet-webex \
  --remote http://$IP:4444/wd/hub