@@ -42,10 +42,16 @@ def textfield text
42
42
return execute_script ( js ) . first
43
43
end
44
44
45
- # find_ele_by_text :textfield, text
45
+ textfield_include text
46
+ end
47
+
48
+ # Get the first textfield that includes text.
49
+ # @param text [String] the text the textfield must include
50
+ # @return [Textfield]
51
+ def textfield_include text
46
52
js = %Q(
47
- var t = au.getElementsByXpath('textfield[@text= "#{ text } "]').value;
48
- var s = au.getElementsByXpath('secure[@text= "#{ text } "]').value;
53
+ var t = au.getElementsByXpath('textfield[contains( @text, "#{ text } ") ]').value;
54
+ var s = au.getElementsByXpath('secure[contains( @text, "#{ text } ") ]').value;
49
55
t.concat(s)[0];
50
56
)
51
57
@@ -54,13 +60,14 @@ def textfield text
54
60
execute_script js
55
61
end
56
62
57
- # Get the first textfield that includes text.
58
- # @param text [String] the text the textfield must include
63
+ # Get the first textfield that exactly matches text.
64
+ # @param text [String] the text the textfield must exactly match
59
65
# @return [Textfield]
60
- def textfield_include text
66
+ def textfield_exact text
67
+ # find_ele_by_text :textfield, text
61
68
js = %Q(
62
- var t = au.getElementsByXpath('textfield[contains( @text, "#{ text } ") ]').value;
63
- var s = au.getElementsByXpath('secure[contains( @text, "#{ text } ") ]').value;
69
+ var t = au.getElementsByXpath('textfield[@text= "#{ text } "]').value;
70
+ var s = au.getElementsByXpath('secure[@text= "#{ text } "]').value;
64
71
t.concat(s)[0];
65
72
)
66
73
0 commit comments