跳至主要内容

touchAction

弃用警告

touchAction 命令已 **弃用**,将在未来版本中删除。我们建议改为使用 action 命令,并使用指针类型 touch,例如:

await browser.action('pointer', {
parameters: { pointerType: 'touch' }
})

触摸操作 API 提供了 Appium 中所有可自动化的手势的基础。它目前仅适用于原生应用,不能用于与 Web 应用交互。其核心是能够将临时的单个操作链接在一起,然后将其应用于设备上应用程序中的元素。可使用的基本操作包括

  • press(传递元素或 (x,y) 或两者)
  • longPress(传递元素或 (x,y) 或两者)
  • tap(传递元素或 (x,y) 或两者)
  • moveTo(传递绝对 x,y 坐标)
  • wait(传递 ms(以毫秒为单位))
  • release(无参数)
用法
$(selector).touchAction(action)
参数
名称类型详情
actionTouchActions要执行的操作
示例
touchAction.js
it('should do a touch gesture', async () => {
const screen = await $('//UITextbox');

// simple touch action on element
await screen.touchAction('tap');

// simple touch action using selector and x y variables
// tap location is 30px right and 20px down relative from the center of the element
await screen.touchAction({
action: 'tap', x: 30, y:20
})

// multi action on an element (drag&drop)
await screen.touchAction([
'press',
{ action: 'moveTo', x: 200, y: 300 },
'release'
])

// drag&drop to element
const otherElement = await $('//UIAApplication[1]/UIAElement[2]')
await screen.touchAction([
'press',
{ action: 'moveTo', element: otherElement },
'release'
])
});

欢迎!我有什么可以帮助您的?

WebdriverIO AI Copilot