dispatchEvent(type, eventInit, [options])
Dispatches HTML DOM event types e.g. 'click'
.
eventInit
Since eventInit is event-specific, please refer to the events documentation for the lists of initial properties:
Returns
Example
import { browser } from 'k6/browser';
export default async function () {
const page = await browser.newPage();
await page.goto('https://test.k6.io/browser.php');
const button = page.locator('#counter-button');
await button.dispatchEvent('click');
await page.close();
}