We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 789634c commit 2444290Copy full SHA for 2444290
lib/appium_lib/helper.rb
@@ -29,6 +29,24 @@ def wait &block
29
result
30
end
31
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
43
44
45
+# @return [Array<Element>] all matching elements
46
+def names name
47
+ $driver.find_elements :name, name
48
49
50
# Presses the back button on Android.
51
# @return [void]
52
def back
0 commit comments