Skip to content

Commit 6d58a33

Browse files
Add app-wait-activity
1 parent bfd7761 commit 6d58a33

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/appium_lib/console.rb

+5-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@
2727
# Android app starting activity.
2828
APP_ACTIVITY = ENV['APP_ACTIVITY'] unless defined?(APP_ACTIVITY)
2929

30+
# Android app waiting activity
31+
APP_WAIT_ACTIVITY = ENV['APP_WAIT_ACTIVITY'] unless defined?(APP_WAIT_ACTIVITY)
32+
3033
# Sauce Username
3134
SAUCE_USERNAME = ENV['SAUCE_USERNAME'] unless defined?(SAUCE_USERNAME)
3235

@@ -74,7 +77,8 @@ def android_capabilities
7477
name: APP_NAME || 'Ruby Console Android Appium',
7578
app: absolute_app_path,
7679
:'app-package' => APP_PACKAGE,
77-
:'app-activity' => APP_ACTIVITY
80+
:'app-activity' => APP_ACTIVITY,
81+
:'app-wait-activity' => APP_WAIT_ACTIVITY
7882
}
7983
end
8084

0 commit comments

Comments
 (0)