File tree 1 file changed +6
-15
lines changed
android_tests/lib/android/specs/android
1 file changed +6
-15
lines changed Original file line number Diff line number Diff line change 4
4
wait { tags ( 'android.widget.TextView' ) . length . must_equal 12 }
5
5
end
6
6
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
-
17
7
# t 'get_selendroid_inspect' # only works on selendroid
18
8
t 'get_page_class' do
19
9
# digit values change based on screen size
20
10
# 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'
26
17
end
27
18
28
19
# t 'page_class' do # tested by get_page_class
You can’t perform that action at this time.
0 commit comments