79243087

Date: 2024-12-02 06:11:25
Score: 2
Natty:
Report link

EDIT

Success! @ggorlen correctly identified that the button was in an iframe.

      await page.waitForSelector('iframe');
      const elementHandle = await page.$(
        'iframe[src="/zephyr/export"]'
      )
      const frame = await elementHandle.contentFrame();
      await delay(100);
      await frame.click('#export_people_action')
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @ggorlen
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Adam Gosnell