Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
站点中存在一个聊天开始按钮,如下所示
但是在 puppeteer 上运行自动化脚本时,此按钮不显示。即使我使用各种等待它加载。如下面的按钮没有出现
元素存在那里。可能由于使用延迟或未在给定时间内呈现,按钮的 UI 未出现,但元素存在。
从普通浏览器中检查并复制“开始按钮”的唯一标识符(不是通过自动脚本运行的)
然后使用await page.click("button_Identifier"); ,您将看到开始聊天按钮已单击并且窗口移至下一步。
await page.click("button_Identifier");