Skip to content
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
4 changes: 2 additions & 2 deletions docs/v7-to-v8-migration-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Please use [W3C Actions](https://w3c.github.io/webdriver/#actions) instead
or the corresponding extension methods for the driver (if available).
Check
- https://www.youtube.com/watch?v=oAJ7jwMNFVU
- https://appiumpro.com/editions/30-ios-specific-touch-action-methods
- https://www.headspin.io/blog/ios-specific-touch-action-methods
- Android gesture shortcuts:
* [mobile: longClickGesture](https://github.com/appium/appium-uiautomator2-driver/blob/master/docs/android-mobile-gestures.md#mobile-longclickgesture)
* [mobile: doubleClickGesture](https://github.com/appium/appium-uiautomator2-driver/blob/master/docs/android-mobile-gestures.md#mobile-doubleclickgesture)
Expand All @@ -107,7 +107,7 @@ Check
* [mobile: dragFromToForDuration](https://github.com/appium/appium-xcuitest-driver/blob/master/docs/execute-methods.md#mobile-dragfromtoforduration)
* [mobile: dragFromToWithVelocity](https://github.com/appium/appium-xcuitest-driver/blob/master/docs/execute-methods.md#mobile-dragfromtowithvelocity)
* [mobile: scrollToElement](https://github.com/appium/appium-xcuitest-driver/blob/master/docs/execute-methods.md#mobile-scrolltoelement)
- https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
- https://www.headspin.io/blog/automating-complex-gestures-with-the-w3c-actions-api
for more details on how to properly apply W3C Actions to your automation context.

## resetApp/launchApp/closeApp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public AppiumClientConfig authenticateAs(Credentials credentials) {

/**
* Whether enable directConnect feature described in
* <a href="https://appiumpro.com/editions/86-connecting-directly-to-appium-hosts-in-distributed-environments">
* <a href="https://www.headspin.io/blog/connecting-directly-to-appium-hosts-in-distributed-environments">
* Connecting Directly to Appium Hosts in Distributed Environments</a>.
*
* @param directConnect if enable the directConnect feature
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/appium/java_client/MultiTouchAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
* extension methods for the driver (if available).
* Check
* - https://www.youtube.com/watch?v=oAJ7jwMNFVU
* - https://appiumpro.com/editions/30-ios-specific-touch-action-methods
* - https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
* - https://www.headspin.io/blog/ios-specific-touch-action-methods
* - https://www.headspin.io/blog/automating-complex-gestures-with-the-w3c-actions-api
* for more details.
*/
@Deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
* extension methods for the driver (if available).
* Check
* - https://www.youtube.com/watch?v=oAJ7jwMNFVU
* - https://appiumpro.com/editions/30-ios-specific-touch-action-methods
* - https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
* - https://www.headspin.io/blog/ios-specific-touch-action-methods
* - https://www.headspin.io/blog/automating-complex-gestures-with-the-w3c-actions-api
* for more details.
*/
@Deprecated
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/appium/java_client/TouchAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@
* extension methods for the driver (if available).
* Check
* - https://www.youtube.com/watch?v=oAJ7jwMNFVU
* - https://appiumpro.com/editions/30-ios-specific-touch-action-methods
* - https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
* - https://www.headspin.io/blog/ios-specific-touch-action-methods
* - https://www.headspin.io/blog/automating-complex-gestures-with-the-w3c-actions-api
* for more details.
*/
@Deprecated
public class TouchAction<T extends TouchAction<T>> implements PerformsActions<T> {

Check warning on line 55 in src/main/java/io/appium/java_client/TouchAction.java

View workflow job for this annotation

GitHub Actions / JDK 21 build (stable)

no @param for <T>

Check warning on line 55 in src/main/java/io/appium/java_client/TouchAction.java

View workflow job for this annotation

GitHub Actions / JDK 25 build (snapshot)

no @param for <T>

Check warning on line 55 in src/main/java/io/appium/java_client/TouchAction.java

View workflow job for this annotation

GitHub Actions / JDK 21 build (snapshot)

no @param for <T>

Check warning on line 55 in src/main/java/io/appium/java_client/TouchAction.java

View workflow job for this annotation

GitHub Actions / JDK 25 build (stable)

no @param for <T>

protected List<ActionParameter> parameters;
private PerformsTouchActions performsTouchActions;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
* extension methods for the driver (if available).
* Check
* - https://www.youtube.com/watch?v=oAJ7jwMNFVU
* - https://appiumpro.com/editions/30-ios-specific-touch-action-methods
* - https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
* - https://www.headspin.io/blog/ios-specific-touch-action-methods
* - https://www.headspin.io/blog/automating-complex-gestures-with-the-w3c-actions-api
* for more details.
*/
@Deprecated
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/appium/java_client/ios/IOSTouchAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
* extension methods for the driver (if available).
* Check
* - https://www.youtube.com/watch?v=oAJ7jwMNFVU
* - https://appiumpro.com/editions/30-ios-specific-touch-action-methods
* - https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
* - https://www.headspin.io/blog/ios-specific-touch-action-methods
* - https://www.headspin.io/blog/automating-complex-gestures-with-the-w3c-actions-api
* for more details.
*/
@Deprecated
Expand Down
Loading