No results for

Powered byAlgolia
⚠️ This is the archived documentation for k6 v0.47. Go to the latest version.

tap([options])

attention

This feature has known issues. For details, refer to #436 and #471.

Tap on the chosen element.

ParameterTypeDefaultDescription
options
objectnull

Example

import { browser } from 'k6/experimental/browser';
export default async function () {
const page = browser.newPage({
hasTouch: true,
});
await page.goto('https://test.k6.io/browser.php');
const options = page.locator("#numbers-options");
options.tap();
}