我是靠谱客的博主 野性电源,最近开发中收集的这篇文章主要介绍Appium-Touch Up(触摸向上),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

这里指触摸屏幕的向上动作

Touch Up

          • Example Usage
          • Support
            • Appium Server
            • Appium Clients
          • HTTP API Specifications
            • Endpoint
            • URL Parameters
            • JSON Parameters
            • Response

Finger up on the screen

Example Usage
JavaTouchActions action = new TouchActions(driver);
action.down(10, 10);
action.up(20, 20);
action.perform();
Pythonfrom appium.webdriver.common.touch_action import TouchAction
# …
actions = TouchAction(driver)
actions.tap_and_hold(20, 20)
actions.release(50, 50)
actions.perform()
Javascript// webdriver.io example
driver.touchUp(10, 10);

// wd example
// Using tapElement method
await driver.tapElement(elementOne);

// Using touch actions
let action = new wd.TouchAction();
action.press({x: 10, y: 10});
action.release({x: 20, y: 20});
await action.perform();
Ruby# ruby_lib example
touch_action.down(element).up(50, 50).perform

# ruby_lib_core example
@driver.touch_action.down(element).up(50, 50).perform
C#TouchActions action = new TouchActions(driver);
action.Down(10, 10);
action.Up(20, 20);
action.Perform();
PHP// TODO PHP sample
Support
Appium Server
PlatformDriverPlatform VersionsAppium VersionDriver Version
iOSXCUITest9.3+1.6.0+All
UIAutomation8.0 to 9.3+AllAll
AndroidEspresso?+1.9.0+All
UiAutomator2?+1.6.0+All
UiAutomator4.3+AllAll
MacMac?+1.6.4+All
WindowsWindows10+1.6.0+All
Appium Clients
LanguageSupportDocumentation
JavaAllseleniumhq.github.io
PythonAllselenium-python.readthedocs.io
Javascript (WebdriverIO)All
Javascript (WD)Allgithub.com
RubyAllwww.rubydoc.info
PHPAllgithub.com
C#Allgithub.com
HTTP API Specifications
Endpoint

POST /session/:session_id/touch/up

URL Parameters
namedescription
session_idID of the element to double tap on
JSON Parameters
nametypedescription
xnumberX coordinate on the screen
ynumberY coordinate on the screen
Response

null

最后

以上就是野性电源为你收集整理的Appium-Touch Up(触摸向上)的全部内容,希望文章能够帮你解决Appium-Touch Up(触摸向上)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部