From 87aed5fa0f84a5b4eaa1fc49b7913baa5a29e9f9 Mon Sep 17 00:00:00 2001 From: Kazuaki Matsuo Date: Sun, 24 Dec 2023 21:28:09 -0800 Subject: [PATCH] docs: update links (#512) --- lib/appium_lib_core/common/base/bridge.rb | 7 ++++--- lib/appium_lib_core/common/base/driver.rb | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/appium_lib_core/common/base/bridge.rb b/lib/appium_lib_core/common/base/bridge.rb index ac339b23..fd4694e3 100644 --- a/lib/appium_lib_core/common/base/bridge.rb +++ b/lib/appium_lib_core/common/base/bridge.rb @@ -181,9 +181,10 @@ def status # Perform 'touch' actions for W3C module. # Generate +touch+ pointer action here and users can use this via +driver.action+ - # - https://seleniumhq.github.io/selenium/docs/api/rb/Selenium/WebDriver/W3CActionBuilder.html - # - https://seleniumhq.github.io/selenium/docs/api/rb/Selenium/WebDriver/PointerActions.html - # - https://seleniumhq.github.io/selenium/docs/api/rb/Selenium/WebDriver/KeyActions.html + # - https://www.selenium.dev/documentation/webdriver/actions_api/ + # - https://www.selenium.dev/selenium/docs/api/rb/Selenium/WebDriver/ActionBuilder.html + # - https://www.selenium.dev/selenium/docs/api/rb/Selenium/WebDriver/PointerActions.html + # - https://www.selenium.dev/selenium/docs/api/rb/Selenium/WebDriver/KeyActions.html # # The pointer type is 'touch' by default in the Appium Ruby client. # diff --git a/lib/appium_lib_core/common/base/driver.rb b/lib/appium_lib_core/common/base/driver.rb index 01e68c54..907fb968 100644 --- a/lib/appium_lib_core/common/base/driver.rb +++ b/lib/appium_lib_core/common/base/driver.rb @@ -201,8 +201,8 @@ def add_command(method:, url:, name:, &block) # Perform 'key' actions for W3C module. # Generate +key+ pointer action here and users can use this via +driver.key_action+ - # - https://seleniumhq.github.io/selenium/docs/api/rb/Selenium/WebDriver/W3CActionBuilder.html - # - https://seleniumhq.github.io/selenium/docs/api/rb/Selenium/WebDriver/KeyActions.html + # - https://www.selenium.dev/selenium/docs/api/rb/Selenium/WebDriver/ActionBuilder.html + # - https://www.selenium.dev/selenium/docs/api/rb/Selenium/WebDriver/KeyActions.html # # The pointer type is 'key' by default in the Appium Ruby client. # +driver.action+ in Appium Ruby client has 'pointer' action by default.