You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo"Error: Appium server is not running on ${APPIUM_HOST}:${APPIUM_PORT}"
10
+
echo"Please start the Appium server first with: appium server -p ${APPIUM_PORT}, or set APPIUM_TEST_SERVER_HOST and APPIUM_TEST_SERVER_PORT environment variables"
11
+
exit 1
12
+
fi
13
+
14
+
# Check if any Android device is connected
15
+
if! adb devices | grep -q "device$";then
16
+
echo"Error: No Android device connected"
17
+
echo"Please connect an Android device or start an emulator"
18
+
echo"Current devices list:"
19
+
adb devices
20
+
exit 1
21
+
fi
22
+
23
+
# Check if android-apidemos is installed
24
+
if [ !-f"node_modules/android-apidemos/apks/ApiDemos-debug.apk" ];then
0 commit comments