Skip to content

Commit f5f82c0

Browse files
Default to partial match
1 parent 2e7f8c6 commit f5f82c0

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

lib/appium_lib/element/ios/textfield.rb

+15-8
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,16 @@ def textfield text
4242
return execute_script(js).first
4343
end
4444

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
4652
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;
4955
t.concat(s)[0];
5056
)
5157

@@ -54,13 +60,14 @@ def textfield text
5460
execute_script js
5561
end
5662

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
5965
# @return [Textfield]
60-
def textfield_include text
66+
def textfield_exact text
67+
# find_ele_by_text :textfield, text
6168
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;
6471
t.concat(s)[0];
6572
)
6673

0 commit comments

Comments
 (0)