Skip to content

Commit 39a89c8

Browse files
authored
docs: update links (appium#944)
1 parent 40ac012 commit 39a89c8

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ For example, some changes in the Selenium binding could break the Appium client.
8282
- Please check each behavior. Their behaviors could slightly differ.
8383
- Added `strict_ssl` to relax SSL errors such as self-signed ones
8484
- Deprecated
85-
- `MultiAction` and `TouchAction` are deprecated. Please use W3C WebDriver actions.
85+
- `MultiAction` and `TouchAction` are deprecated. Please use W3C WebDriver actions or `mobile:` extensions
8686
- e.g.
8787
- [appium/webdriver/extensions/action_helpers.py](appium/webdriver/extensions/action_helpers.py)
88-
- https://www.selenium.dev/documentation/support_packages/mouse_and_keyboard_actions_in_detail/
88+
- https://www.selenium.dev/documentation/webdriver/actions_api/
8989
- https://www.youtube.com/watch?v=oAJ7jwMNFVU
9090
- https://appiumpro.com/editions/30-ios-specific-touch-action-methods
9191
- https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
@@ -111,6 +111,9 @@ actions.w3c_actions.pointer_action.release()
111111
actions.perform()
112112
```
113113

114+
- [appium/webdriver/extensions/action_helpers.py](appium/webdriver/extensions/action_helpers.py)
115+
- https://www.selenium.dev/documentation/webdriver/actions_api/
116+
114117
## Usage
115118

116119
The Appium Python Client is fully compliant with the WebDriver Protocol

appium/webdriver/common/multi_action.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
class MultiAction:
3434
"""
3535
deprecated:: 2.0.0
36-
Please use W3C actions instead: http://appium.io/docs/en/commands/interactions/actions/
36+
Please use W3C actions instead: https://github.com/appium/python-client?tab=readme-ov-file#multiactiontouchaction-to-w3c-actions
3737
"""
3838

3939
def __init__(self, driver: 'WebDriver', element: Optional['WebElement'] = None) -> None:

appium/webdriver/common/touch_action.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
class TouchAction:
3838
"""
3939
deprecated:: 2.0.0
40-
Please use W3C actions instead: http://appium.io/docs/en/commands/interactions/actions/
40+
Please use W3C actions instead: https://github.com/appium/python-client?tab=readme-ov-file#multiactiontouchaction-to-w3c-actions
4141
"""
4242

4343
def __init__(self, driver: Optional['WebDriver'] = None):

0 commit comments

Comments
 (0)