Chrome开发者工具

start 快捷键 打开 Devtool Ctrl + Shift + I 打开 Devtool & 审查元素 Ctrl + Shift + C (按下组合键,直接将光标移动到页面对应位置即可查看其代码)

console控制台 可以直接执行js命令,包括赋值、运算等。

https://blackpearl.fun/zh/technology/web/chrome-devtools https://www.cnblogs.com/tjp40922/p/11401840.html

另:js开发

https://www.runoob.com/jsref/met-document-queryselector.html

实例 获取文档中第一个

元素:

document.querySelector(“p”);

尝试一下 »

实例 获取文档中 class=“example” 的第一个元素:

document.querySelector(“.example”);

尝试一下 »

实例 获取文档中 class=“example” 的第一个

元素:

document.querySelector(“p.example”);

尝试一下 »

https://stackoverflow.com/questions/46825300/wait-for-text-to-appear-when-using-puppeteer

You can use waitForFunction. See https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pagewaitforfunctionpagefunction-options-args

Including @elena’s solution for completeness of the answer:

await page.waitForFunction(‘document.querySelector(“.count”).inner‌​Text.length == 7’); Share Follow

https://github.com/seleniumhq/selenium