Skip to content

Commit 8c92ace

Browse files
authored
feature: Add espresso bridge (#705)
feature: Add espresso bridge
1 parent cc4f9e7 commit 8c92ace

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

lib/appium_lib/android/common/helper.rb

+4-1
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,11 @@ def page(opts = {})
120120

121121
# example line:
122122
# "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}}}"
124124
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+
125128
line = `adb shell dumpsys window windows`.each_line.grep(/mFocusedApp/).first.strip
126129

127130
_parse_current_app_line line
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

lib/appium_lib/core/common/device.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module Device
2727
# @return [String] An activity name
2828
#
2929
# ```ruby
30-
# current_activity # 'io.appium.android.apis.ApiDemos'
30+
# current_activity # '.ApiDemos'
3131
# ```
3232

3333
# @!method current_package

0 commit comments

Comments
 (0)