No results for

Powered byAlgolia
⚠️ This is archived documentation for v0.45. Go to the latest version

isChecked([options])

Checks to see if the checkbox input type is selected or not.

ParameterTypeDefaultDescription
options
objectnull

Returns

TypeDescription
booltrue if the checkbox is selected, else false.

Example

import { chromium } from 'k6/experimental/browser';
export default async function () {
const browser = chromium.launch();
const page = browser.newPage();
await page.goto('https://test.k6.io/browser.php');
const checkbox = page.locator('#checkbox1');
if (!checkbox.isChecked()) {
checkbox.check();
}
}