Skip to content

Commit ccfb38d

Browse files
Update android/helper for Android L
1 parent 24b75d7 commit ccfb38d

File tree

1 file changed

+6
-15
lines changed
  • android_tests/lib/android/specs/android

1 file changed

+6
-15
lines changed

android_tests/lib/android/specs/android/helper.rb

+6-15
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,16 @@
44
wait { tags('android.widget.TextView').length.must_equal 12 }
55
end
66

7-
def page_class_data
8-
(<<-TXT).strip
9-
14x android.widget.TextView
10-
1x android.view.View
11-
1x android.widget.ListView
12-
1x android.widget.FrameLayout
13-
1x hierarchy
14-
TXT
15-
end
16-
177
# t 'get_selendroid_inspect' # only works on selendroid
188
t 'get_page_class' do
199
# digit values change based on screen size
2010
# larger screens have more elements
21-
wait do
22-
exp = page_class_data.gsub(/\d+/, '')
23-
act = get_page_class.gsub(/\d+/, '')
24-
act.must_equal exp
25-
end
11+
12+
act = get_page_class
13+
act.must_include 'android.widget.TextView'
14+
act.must_include 'android.widget.ListView'
15+
act.must_include 'android.widget.FrameLayout'
16+
act.must_include 'hierarchy'
2617
end
2718

2819
# t 'page_class' do # tested by get_page_class

0 commit comments

Comments
 (0)