We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f010e7 commit 58218e1Copy full SHA for 58218e1
CHANGELOG.md
@@ -7,6 +7,7 @@ Release tags are https://github.com/appium/ruby_lib/releases .
7
### 1. Enhancements
8
9
### 2. Bug fixes
10
+- Fix iOS `page` in native context
11
12
### 3. Deprecations
13
lib/appium_lib/ios/common/helper.rb
@@ -21,7 +21,7 @@ class UITestElementsPrinter < Nokogiri::XML::SAX::Document
21
def start_element(type, attrs = [])
22
return if filter && !filter.eql?(type)
23
24
- page = attrs.each_with_object({}) do |hash, attr|
+ page = attrs.each_with_object({}) do |attr, hash|
25
hash[attr[0]] = attr[1] if %w(name label value hint visible).include?(attr[0])
26
hash
27
end
0 commit comments