diff --git a/README_GENYMOTION.md b/README_GENYMOTION.md index d204098..497eeac 100644 --- a/README_GENYMOTION.md +++ b/README_GENYMOTION.md @@ -11,7 +11,7 @@ You can easily scale your Appium tests on Genymotion Android virtual devices in export PASS="xxx" export LICENSE="xxx" - docker run -it --rm -p 4723:4723 -v $PWD/genymotion/example/sample_devices:/root/tmp -e TYPE=genycloud -e USER=$USER -e PASS=$PASS -e LICENSE=$LICENSE butomo1989/docker-android-genymotion + docker run -it --rm -p 4723:4723 -v $PWD/genymotion/example/sample_devices:/root/tmp -e TYPE=SaaS -e USER=$USER -e PASS=$PASS -e LICENSE=$LICENSE butomo1989/docker-android-genymotion ```

diff --git a/genymotion/example/geny.yml b/genymotion/example/geny.yml index 0604f45..73d4baa 100755 --- a/genymotion/example/geny.yml +++ b/genymotion/example/geny.yml @@ -20,7 +20,7 @@ services: - $PWD/sample_apk:/root/tmp/sample_apk - $PWD/sample_devices:/root/tmp environment: - - TYPE=genycloud + - TYPE=SaaS - TEMPLATE=/root/tmp/devices.json - USER=$USER - PASS=$PASS diff --git a/genymotion/geny_start.sh b/genymotion/geny_start.sh index 0a5ce1e..7ae6a77 100755 --- a/genymotion/geny_start.sh +++ b/genymotion/geny_start.sh @@ -1,7 +1,7 @@ #!/bin/bash # This script is needed because of https://www.ctl.io/developers/blog/post/gracefully-stopping-docker-containers/ -types=(genycloud aws) +types=(saas aws) if [ -z "$TYPE" ]; then echo "Please specify one of following types: ${types[@]}" diff --git a/src/appium.sh b/src/appium.sh index 60e490f..8f4f99f 100644 --- a/src/appium.sh +++ b/src/appium.sh @@ -321,7 +321,7 @@ elif [ "$GENYMOTION" = true ]; then echo "${types[@]}" case $TYPE in "${types[0]}" ) - echo "Using Genymotion-Cloud" + echo "Using Genymotion-Cloud (SaaS)" prepare_geny_cloud run_appium ;;