Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
tap([options])
Tap on the chosen element.
Returns
Example
import { browser } from 'k6/browser';
export default async function () {
const page = await browser.newPage({
hasTouch: true,
});
await page.goto('https://test.k6.io/browser.php');
const options = page.locator('#numbers-options');
await options.tap();
}