Skip to content

Commit 2444290

Browse files
Add name methods
Fix #4
1 parent 789634c commit 2444290

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

lib/appium_lib/helper.rb

+18
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,24 @@ def wait &block
2929
result
3030
end
3131

32+
# Return the first element matching name.
33+
# on Android name is content description
34+
# on iOS name is the accessibility label or the text.
35+
# @param name [String] the name to search for
36+
# @return [Element] the first matching element
37+
def name name
38+
$driver.find_element :name, name
39+
end
40+
41+
# Return all element matching name.
42+
# on Android name is content description
43+
# on iOS name is the accessibility label or the text.
44+
# @param name [String] the name to search for
45+
# @return [Array<Element>] all matching elements
46+
def names name
47+
$driver.find_elements :name, name
48+
end
49+
3250
# Presses the back button on Android.
3351
# @return [void]
3452
def back

0 commit comments

Comments
 (0)