No results for

Powered byAlgolia
⚠️ This documentation is outdated. Please visit grafana.com for the latest k6 documentation.📚

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 { chromium } from 'k6/experimental/browser';
export default async function () {
const browser = chromium.launch();
const context = browser.newContext();
const page = context.newPage({
hasTouch: true,
});
await page.goto('https://test.k6.io/browser.php');
const options = page.locator("#numbers-options");
options.tap();
}