Skip to content

Commit e6da4aa

Browse files
Add textfield_named for iOS
Fix #100
1 parent 789fc52 commit e6da4aa

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

lib/appium_lib/ios/element/textfield.rb

+10
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,14 @@ def textfield_include text
6464
def textfield_exact text
6565
xpath "textfield[@text='#{text}']"
6666
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
6777
end # module Appium::Ios

lib/appium_lib/ios/helper.rb

+2
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,8 @@ def id id
193193
find_element :id, id
194194
end
195195

196+
# Return the iOS version as an array of integers
197+
# @return [Array<Integer>]
196198
def ios_version
197199
ios_version = execute_script 'UIATarget.localTarget().systemVersion()'
198200
ios_version.split('.').map { |e| e.to_i }

0 commit comments

Comments
 (0)