Html – How to click id by Puppeteer, but id is changed each access?
I want to click check-box inperson name by using Puppeteer. And the person name has unique id which is diffrent each time. I have tried to make this method const selector = '#id^="/^[A-Za-z0-9_]+-[0-9]+/g"'; await page.click(selector) But Puppeteer says error which…