How to click a link with a specific text with Puppeteer
By Flavio Copes
Learn how to click a link or button by its text in Puppeteer using page.$x with an XPath contains() selector, handy for a cookie Accept all button.
~~~
I wanted to click an “Accept all” cookie button with Puppeteer, I used this code:
const [linkcookie] = await page.$x("//a[contains(., 'Accept all')]")
if (linkcookie) {
await linkcookie.click()
}
Note that if the button is a button HTML element (it depends on the HTML markup used), you have to use
page.$x("//button[contains(., 'Accept all')]")
instead 👍
Also see my full Puppeteer tutorial
~~~
Related posts about node: