概述
这里指触摸屏幕的向上动作
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
Java | TouchActions action = new TouchActions(driver); action.down(10, 10); action.up(20, 20); action.perform(); |
Python | from 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
Platform | Driver | Platform Versions | Appium Version | Driver Version |
---|---|---|---|---|
iOS | XCUITest | 9.3+ | 1.6.0+ | All |
UIAutomation | 8.0 to 9.3+ | All | All | |
Android | Espresso | ?+ | 1.9.0+ | All |
UiAutomator2 | ?+ | 1.6.0+ | All | |
UiAutomator | 4.3+ | All | All | |
Mac | Mac | ?+ | 1.6.4+ | All |
Windows | Windows | 10+ | 1.6.0+ | All |
Appium Clients
Language | Support | Documentation |
---|---|---|
Java | All | seleniumhq.github.io |
Python | All | selenium-python.readthedocs.io |
Javascript (WebdriverIO) | All | |
Javascript (WD) | All | github.com |
Ruby | All | www.rubydoc.info |
PHP | All | github.com |
C# | All | github.com |
HTTP API Specifications
Endpoint
POST /session/:session_id/touch/up
URL Parameters
name | description |
---|---|
session_id | ID of the element to double tap on |
JSON Parameters
name | type | description |
---|---|---|
x | number | X coordinate on the screen |
y | number | Y coordinate on the screen |
Response
null
最后
以上就是野性电源为你收集整理的Appium-Touch Up(触摸向上)的全部内容,希望文章能够帮你解决Appium-Touch Up(触摸向上)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复