1
+ # encoding: utf-8
2
+ module Appium ::Android
3
+ =begin
4
+ name, names, text, text should match substring and case insensitive.
5
+
6
+ In Android //* is used to find partial case insensitive text matches.
7
+ //* is not currently implemented in iOS.
8
+
9
+ find_element :name by default uses a partial case insensitive match.
10
+ On iOS the default is an exact name match.
11
+ =end
12
+
13
+ =begin
14
+ // iOS version
15
+ // https://github.com/appium/ruby_lib/blob/37bb4e90b29e5adb4438b287b6387a504c94b5c4/lib/appium_lib/element/ios/generic.rb#L23
16
+ var search = "name contains[c] '#{text}' || label contains[c] '#{text}' || value contains[c] '#{text}'";
17
+ var a = w.secureTextFields().firstWithPredicate(search);
18
+ if ( isNil(a) ) {
19
+ a = w.textFields().firstWithPredicate(search);
20
+ if ( isNil(a) ) {
21
+ a = w.buttons().firstWithPredicate(search);
22
+ if ( isNil(a) ) {
23
+ a = w.elements().firstWithPredicate(search);
24
+ }
25
+ }
26
+ }
27
+
28
+ Android considers both a textfield and a secure textfield to be "EditText".
29
+ Name (the content desc) is searched first and then we search for value (text).
30
+ There's no label in Android.
31
+
32
+ Android buttons have different class names (android.widget.Button, android.widget.ImageButton)
33
+ so we consider the element a button if the class name contains the word button.
34
+
35
+ After looking for textfields and buttons, then we search all elements. Find will return
36
+ the first element that matches.
37
+ =end
38
+ def find val
39
+ # s.className('android.widget.EditText').descriptionContains(value);
40
+ args = [ [ 4 , 'android.widget.EditText' ] , [ 7 , val ] ] ,
41
+ # s.className('android.widget.EditText').textContains(value);
42
+ [ [ 4 , 'android.widget.EditText' ] , [ 3 , val ] ] ,
43
+
44
+ # s.className('android.widget.Button').descriptionContains(value);
45
+ [ [ 4 , 'android.widget.Button' ] , [ 7 , val ] ] ,
46
+ # s.className('android.widget.Button').textContains(value);
47
+ [ [ 4 , 'android.widget.Button' ] , [ 3 , val ] ] ,
48
+
49
+ # s.className('android.widget.ImageButton').descriptionContains(value);
50
+ [ [ 4 , 'android.widget.ImageButton' ] , [ 7 , val ] ] ,
51
+ # s.className('android.widget.ImageButton').textContains(value);
52
+ [ [ 4 , 'android.widget.ImageButton' ] , [ 3 , val ] ] ,
53
+
54
+ # s.descriptionContains(value);
55
+ [ [ 7 , val ] ] ,
56
+ # s.textContains(value);
57
+ [ [ 3 , val ] ]
58
+ mobile :find , args
59
+ end
60
+
61
+ # Return the first element matching text.
62
+ # @param text [String] the text to search for
63
+ # @return [Element] the first matching element
64
+ def text text
65
+ # Return the first element matching selector.
66
+ # s.textContains(value)
67
+ mobile :find , [ [ [ 3 , text ] ] ]
68
+ end
69
+
70
+ # Return all elements matching text.
71
+ # @param text [String] the text to search for
72
+ # @return [Array<Element>] all matching elements
73
+ def texts text
74
+ @driver . find_elements :xpath , "//*[contains(@text, '#{ text } ')]"
75
+ end
76
+
77
+ # Return the first element matching name.
78
+ # on Android name is content description
79
+ # on iOS name is the accessibility label or the text.
80
+ # @param name [String] the name to search for
81
+ # @return [Element] the first matching element
82
+ def name name
83
+ @driver . find_element :name , name
84
+ end
85
+
86
+ # Return all elements matching name.
87
+ # on Android name is content description
88
+ # on iOS name is the accessibility label or the text.
89
+ # @param name [String] the name to search for
90
+ # @return [Array<Element>] all matching elements
91
+ def names name
92
+ @driver . find_elements :name , name
93
+ end
94
+ end # module Appium::Android
0 commit comments