summaryrefslogtreecommitdiff
path: root/docker/selenium/launch_selenium_test.sh
blob: ac30ecb0ec46503ca7d2bf2998d72047523a6597 (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
#!/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 && tsc)

# build crx file
$HOME/deployment/docker/selenium/crxmake.sh $HOME/wallet-webex private.pem

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