Skip to content

Commit a77a6eb

Browse files
committed
chore: create links
1 parent bc13166 commit a77a6eb

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

CHANGELOG.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,13 @@ Read `release_notes.md` for commit level details.
3636
- `Appium::Core::TouchAction` and `Appium::Core::MultiTouch` are deprecated
3737
- Please use W3C actions instead http://appium.io/docs/en/commands/interactions/actions/
3838
- More working examples:
39-
- test/functional/android/webdriver/w3c_actions_test.rb
40-
- test/functional/ios/webdriver/w3c_actions_test.rb
41-
- test/functional/common_w3c_actions.rb
39+
- [test/functional/android/webdriver/w3c_actions_test.rb](test/functional/android/webdriver/w3c_actions_test.rb)
40+
- [test/functional/ios/webdriver/w3c_actions_test.rb](test/functional/ios/webdriver/w3c_actions_test.rb)
41+
- [test/functional/common_w3c_actions.rb](test/functional/common_w3c_actions.rb)
4242
- https://www.selenium.dev/documentation/support_packages/mouse_and_keyboard_actions_in_detail/
43+
- https://www.youtube.com/watch?v=oAJ7jwMNFVU
44+
- https://appiumpro.com/editions/30-ios-specific-touch-action-methods
45+
- https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
4346
- Removed Selendroid related methods
4447

4548
## [4.7.1] - 2021-09-26

lib/appium_lib_core/common/touch_action/multi_touch.rb

+12
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,18 @@ module Core
2424
# add to a new MultiTouch action. When ready, call +prepare()+ and all
2525
# actions will be executed simultaneously.
2626
#
27+
# Consider to use W3C spec touch action like the followings.
28+
# https://www.selenium.dev/selenium/docs/api/rb/Selenium/WebDriver/PointerActions.html
29+
# https://github.com/appium/ruby_lib_core/blob/master/test/functional/android/webdriver/w3c_actions_test.rb
30+
# https://github.com/appium/ruby_lib_core/blob/master/test/functional/ios/webdriver/w3c_actions_test.rb
31+
#
32+
# About W3C actions
33+
# https://www.youtube.com/watch?v=oAJ7jwMNFVU
34+
# https://appiumpro.com/editions/30-ios-specific-touch-action-methods
35+
# https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
36+
#
37+
# Functional test code in ruby_lib_core repository also helps.
38+
#
2739
# @example
2840
#
2941
# @driver = Appium::Core.for(opts).start_driver

lib/appium_lib_core/common/touch_action/touch_actions.rb

+7
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ module Core
2727
# https://github.com/appium/ruby_lib_core/blob/master/test/functional/android/webdriver/w3c_actions_test.rb
2828
# https://github.com/appium/ruby_lib_core/blob/master/test/functional/ios/webdriver/w3c_actions_test.rb
2929
#
30+
# About W3C actions
31+
# https://www.youtube.com/watch?v=oAJ7jwMNFVU
32+
# https://appiumpro.com/editions/30-ios-specific-touch-action-methods
33+
# https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
34+
#
35+
# Functional test code in ruby_lib_core repository also helps.
36+
#
3037
# @example
3138
#
3239
# @driver = Appium::Core.for(opts).start_driver

0 commit comments

Comments
 (0)