Skip to main content

actions

Allows to run multiple action interaction at once, e.g. to simulate a pinch zoom. For more information on the action command, check out the docs.

Usage
browser.actions()
Example
action.js
it('run multiple actions at once for a pinch zoom', async () => {
await browser.actions([
browser.action('pointer')
.move(500, 500)
.down()
.move(250, 250)
.up(),
browser.action('pointer')
.move(500, 500)
.down()
.move(750, 750)
.up()
])
});

Welcome! How can I help?

WebdriverIO AI Copilot