I have used the code like this:
await page.$$eval( 'input[name=name_check]', checks => checks.forEach(c => c.checked = true)
But this is for multiple checkboxes. I want to use this for a single checkbox.
How can I check only one checkbox?
I have used the code like this:
await page.$$eval( 'input[name=name_check]', checks => checks.forEach(c => c.checked = true)
But this is for multiple checkboxes. I want to use this for a single checkbox.
How can I check only one checkbox?
Share edited Mar 15, 2020 at 3:31 Grant Miller 29.1k16 gold badges156 silver badges170 bronze badges asked Feb 24, 2020 at 6:15 AshishAshish 831 silver badge8 bronze badges 1-
1
replace
$$eval
with$eval
and checks will bee only one element matching the selector – mbit Commented Feb 24, 2020 at 6:32
1 Answer
Reset to default 11page.$eval()
You can use page.$eval()
instead of page.$$eval()
to check one checkbox instead of multiple checkboxes:
await page.$eval('input[name="name_check"]', check => check.checked = true);