最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to check a checkbox using Puppeteer? - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

1 Answer 1

Reset to default 11

page.$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);
发布评论

评论列表(0)

  1. 暂无评论