获取嵌套HTML中的HTML元素

时间:2019-02-12 17:44:10

标签: javascript html node.js puppeteer

页面具有以下结构:

<html>
 <body>
  ...
  <button class="myclass1" type="button">Continue1</button>
   ...
    #document
     <html>
      <body>
       <button class="myclass" type="button">Continue2</button>

如何单击按钮Continue2?

我正在尝试使用Expect-puppeteer。但是,如果您有伪造者的解决方案,那么我会使用它。

await expect(page).toClick('button', { text: 'Continue2'}); // not work(Nested html)
await expect(page).toClick('button', { text: 'Continue1'}); // work

2 个答案:

答案 0 :(得分:0)

您需要先检测帧,然后使用它代替page。在伪娘中:

const frame = page.frames().find(frame => frame.name() === 'iframe-1');
await frame.click('button.myclass');

答案 1 :(得分:-1)

尝试删除秒和标签。我不确定,但是也许可以。