File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -64,4 +64,14 @@ def textfield_include text
64
64
def textfield_exact text
65
65
xpath "textfield[@text='#{ text } ']"
66
66
end
67
+
68
+ # Get the first textfield that exactly matches name
69
+ # @return [Element]
70
+ def textfield_named target_name
71
+ wait do
72
+ target = e_textfields . detect { |e | e . name == target_name }
73
+ raise "Textfield named #{ target_name } not found" unless target
74
+ target
75
+ end
76
+ end
67
77
end # module Appium::Ios
Original file line number Diff line number Diff line change @@ -193,6 +193,8 @@ def id id
193
193
find_element :id , id
194
194
end
195
195
196
+ # Return the iOS version as an array of integers
197
+ # @return [Array<Integer>]
196
198
def ios_version
197
199
ios_version = execute_script 'UIATarget.localTarget().systemVersion()'
198
200
ios_version . split ( '.' ) . map { |e | e . to_i }
You can’t perform that action at this time.
0 commit comments