Puppeteer 中的 XPath 表达式而不是 CSS 选择器?

XPath expressions instead of CSS selectors in Puppeteer?

例如 document.querySelectorAll 与 CSS 选择器一起使用,但我如何使用 XPath 表达式来代替?

这是在 puppeteer 的 git 仓库中打开的 existing issue

在此处跟踪进度:https://github.com/GoogleChrome/puppeteer/issues/537

他们刚刚发布了这个功能:)

page.xpath(表达式)

expression <string> Expression to evaluate

returns:<Promise<?ElementHandle>> Promise which resolves to ElementHandle pointing to the page element.

看看here