Skip to content

Commit d3933bb

Browse files
committed
Update to Appium 9.5.0 and Selenium 4.33.0 +semver:feature
1 parent 1b83944 commit d3933bb

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

azure-pipelines.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,17 @@ jobs:
5353

5454
variables:
5555
ANDROID_EMU_NAME: test
56-
ANDROID_SDK_ID: system-images;android-28;google_apis_playstore;x86
56+
ANDROID_SDK_ID: system-images;android-30;google_apis_playstore;x86
5757

5858
steps:
5959
- task: CmdLine@2
6060
displayName: 'Configure Appium and Android SDK'
6161
inputs:
6262
script: |
6363
echo "Configuring Environment"
64-
export PATH=$PATH:$JAVA_HOME/bin
64+
brew install --cask temurin@8
65+
export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)
66+
export PATH=$JAVA_HOME/bin:$PATH
6567
echo export "ANDROID_HOME=\$ANDROID_HOME" >> ~/.bash_profile
6668
export PATH=$PATH:$ANDROID_HOME
6769
@@ -74,14 +76,14 @@ jobs:
7476
$ANDROID_HOME/emulator/emulator -list-avds
7577
7678
echo "Starting emulator"
77-
nohup $ANDROID_HOME/emulator/emulator -avd "$(ANDROID_EMU_NAME)" -gpu swiftshader_indirect -noaudio -no-boot-anim -no-snapshot > /dev/null 2>&1 &
79+
nohup $ANDROID_HOME/emulator/emulator -avd "$(ANDROID_EMU_NAME)" -gpu swiftshader_indirect -noaudio -no-boot-anim -no-snapshot -verbose > /dev/null 2>&1 &
7880
$ANDROID_HOME/platform-tools/adb wait-for-device
7981
while [[ $? -ne 0 ]]; do sleep 1; $ANDROID_HOME/platform-tools/adb shell pm list packages; done;
8082
$ANDROID_HOME/platform-tools/adb devices
8183
echo "Emulator started"
8284
8385
echo "Installing Appium"
84-
npm install -g appium@next
86+
npm install -g appium@latest
8587
ln -fs /usr/local/lib/node_modules/appium/build/lib/main.js /usr/local/bin/appium
8688
chmod +x /usr/local/bin/appium
8789
export PATH=$PATH:/usr/local/bin/appium

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,13 @@
189189
<dependency>
190190
<groupId>com.github.aquality-automation</groupId>
191191
<artifactId>aquality-selenium-core</artifactId>
192-
<version>4.0.3</version>
192+
<version>4.6.0</version>
193193
</dependency>
194194

195195
<dependency>
196196
<groupId>io.appium</groupId>
197197
<artifactId>java-client</artifactId>
198-
<version>9.2.3</version>
198+
<version>9.5.0</version>
199199
</dependency>
200200

201201
<dependency>
@@ -208,14 +208,14 @@
208208
<dependency>
209209
<groupId>org.apache.commons</groupId>
210210
<artifactId>commons-lang3</artifactId>
211-
<version>3.14.0</version>
211+
<version>3.17.0</version>
212212
<scope>test</scope>
213213
</dependency>
214214

215215
<dependency>
216216
<groupId>commons-io</groupId>
217217
<artifactId>commons-io</artifactId>
218-
<version>2.16.1</version>
218+
<version>2.19.0</version>
219219
<scope>test</scope>
220220
</dependency>
221221

0 commit comments

Comments
 (0)