We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5ddd4a commit 1372e64Copy full SHA for 1372e64
lib/appium_lib/ios/element/text.rb
@@ -1,12 +1,12 @@
1
# UIAStaticText|XCUIElementTypeStaticText methods
2
module Appium
3
module Ios
4
- IAStaticText = 'UIAStaticText'.freeze
+ UIAStaticText = 'UIAStaticText'.freeze
5
XCUIElementTypeStaticText = 'XCUIElementTypeStaticText'.freeze
6
7
# @return [String] Class name for text
8
def static_text_class
9
- automation_name_is_xcuitest? ? XCUIElementTypeStaticText : IAStaticText
+ automation_name_is_xcuitest? ? XCUIElementTypeStaticText : UIAStaticText
10
end
11
12
# Find the first UIAStaticText|XCUIElementTypeStaticText that contains value or by index.
0 commit comments