Posted inSoftware & Apps
How to find elements by XPath in Puppeteer
You can also use Puppeteer to find elements with XPath instead of CSS selectors, by using the page.$x() function:const puppeteer = require('puppeteer'); (async () => { const browser = await…









