Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Update Appium default version in automate_android.sh and Update Node.js to v18.x #634

Merged
merged 2 commits into from
Aug 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion selenium/android/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN \
apt update && \
apt remove -y libcurl4 && \
apt install -y apt-transport-https ca-certificates tzdata locales libcurl4 curl gnupg && \
curl --silent --location https://deb.nodesource.com/setup_16.x | bash - && \
curl --silent --location https://deb.nodesource.com/setup_18.x | bash - && \
apt install -y --no-install-recommends \
curl \
iproute2 \
Expand Down
2 changes: 1 addition & 1 deletion selenium/automate_android.sh
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ mkdir -p "$TMP_DIR"
cp android/entrypoint.sh "$TMP_DIR/entrypoint.sh"
cp -r ../static/chrome/devtools "$TMP_DIR/devtools"

appium_version=$(request_answer "Specify Appium version:" "1.18.1")
appium_version=$(request_answer "Specify Appium version:" "2.0.1")

until [ "$?" -ne 0 ]; do
android_image_type=$(request_answer "Specify Android image type (possible values: \"default\", \"google_apis\", \"google_apis_playstore\", \"android-tv\", \"android-wear\"):" "default")
Expand Down