dispatchEvent(type, eventInit)
Warning
Use
locator.dispatchEvent(type, eventInit[, options])
instead.
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 const options = {
scenarios: {
browser: {
executor: 'shared-iterations',
options: {
browser: {
type: 'chromium',
},
},
},
},
};
export default async function () {
const page = await browser.newPage();
await page.goto('https://test.k6.io/browser.php');
const button = await page.$('#counter-button');
await button.dispatchEvent('click');
await page.close();
}