Checks to see if the checkbox input type is selected or not.
page .goto('https://test.k6.io/browser.php') .then(() => { const checkbox = page.locator('#checkbox1'); if (!checkbox.isChecked()) { checkbox.check(); } });