File tree 3 files changed +19
-2
lines changed
3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -120,8 +120,11 @@ def page(opts = {})
120
120
121
121
# example line:
122
122
# "mFocusedApp=AppWindowToken{b1420058 token=Token{b128add0
123
- # ActivityRecord{b1264d10 u0 com.example.android.apis/io.appium.android.apis .ApiDemos t23}}}"
123
+ # ActivityRecord{b1264d10 u0 com.example.android.apis/.ApiDemos t23}}}"
124
124
def current_app
125
+ warn '[DEPRECATION] current_app will be removed since it work only local.' \
126
+ 'Please use current_activity and current_app to know package and activity for current app'
127
+
125
128
line = `adb shell dumpsys window windows` . each_line . grep ( /mFocusedApp/ ) . first . strip
126
129
127
130
_parse_current_app_line line
Original file line number Diff line number Diff line change
1
+ require_relative '../android'
2
+
3
+ module Appium
4
+ module Android
5
+ module Espresso
6
+ class Bridge
7
+ def self . for ( target )
8
+ target . extend Appium ::Android
9
+ target . extend Appium ::Android ::Espresso
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ module Device
27
27
# @return [String] An activity name
28
28
#
29
29
# ```ruby
30
- # current_activity # 'io.appium.android.apis .ApiDemos'
30
+ # current_activity # '.ApiDemos'
31
31
# ```
32
32
33
33
# @!method current_package
You can’t perform that action at this time.
0 commit comments