-
-
Notifications
You must be signed in to change notification settings - Fork 456
feat: add documentation for customActions #2690
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
feat: add documentation for customActions #2690
Conversation
f8a6114 to
8e53d23
Compare
KazuCocoa
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you update https://github.com/appium/appium-xcuitest-driver/blob/master/package.json#L89 to require 11.1.0+ (explicitly) as well?
docs/reference/element-attributes.md
Outdated
| |`traits` | Element's [traits](https://developer.apple.com/documentation/uikit/uiaccessibilitytraits?language=objc) value. This attribute returns a comma-separated string of accessibility traits. This attribute is not included into the XML page source, it may only be retrieved via [getAttribute](https://www.w3.org/TR/webdriver2/#get-element-attribute) API.| `Button, Adjustable`, `Button` | | ||
| | `minValue` | Element's minimum allowed value, typically for controls like sliders or progress indicators. | `0`, `0.0`, `1` | | ||
| | `maxValue` | Element's maximum allowed value, typically for controls like sliders or progress indicators. | `100`, `1.0` | | ||
| | `customActions` | Custom actions attached to a single accessibility element. | `Action 1,Action 2` | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would it be possible to also link some official Apple documentation that describes how custom actions could be set on an UI element?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mykola-mokhnach Added links to Apple documentation that describe how to assign custom actions in SwiftUI and UIKit 1d4a40d.
|
Please also bump the minimum appium-webdriveragent version in package.json |
f6de0a9 to
6908309
Compare
@KazuCocoa Updated it 6908309. |
@mykola-mokhnach Bumped appium-webdriveragent version to 11.1.0 6908309 |
## [10.14.0](v10.13.4...v10.14.0) (2025-12-30) ### Features * add documentation for customActions ([#2690](#2690)) ([c8a0473](c8a0473))
|
🎉 This PR is included in version 10.14.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This PR introduces documentation of support for a new
includeCustomActionsInPageSourcesetting andcustomActionsattribute added in appium/WebDriverAgent#1095.