Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Bump WDA version to 5.15.2 #2274

Merged
merged 3 commits into from
Nov 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion docs/execute-methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -1440,4 +1440,24 @@ compactDescription | string | The compact description of the found accessbility
auditType | string or number | The name of the audit type this issue belongs to. Could be a number if the type name is unknown. | 'XCUIAccessibilityAuditTypeContrast'
element | string | The description of the element this issue was found for. | 'Yes' button
elementDescription | string | The debug description of the element this issue was found for. Availble since driver version | A long string describing the element itself and its position in the page tree hierarchy

elementAttributes | dict | JSON object containing various attributes of the element. | See the example below
```json
"elementAttributes":{
"isEnabled":"1",
"isVisible":"1",
"isAccessible":"0",
"frame":"{{129, 65}, {135, 18}}",
"isFocused":"0",
"rect":{
"y":65,
"x":129,
"width":135,
"height":18
},
"value":"Some Button",
"label":"Some Button",
"type":"StaticText",
"name":"Some Button",
"rawIdentifier":null
}
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"appium-ios-device": "^2.5.4",
"appium-ios-simulator": "^5.3.3",
"appium-remote-debugger": "^10.0.0",
"appium-webdriveragent": "^5.13.0",
"appium-webdriveragent": "^5.15.2",
"appium-xcode": "^5.1.4",
"async-lock": "^1.4.0",
"asyncbox": "^3.0.0",
Expand Down