dispatchEvent(selector, type, eventInit[, options])
Warning
Use locator-based
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');
await page.dispatchEvent('#counter-button', 'click');
}