checkly / headless-recorder

Chrome extension that records your browser interactions and generates a Playwright or Puppeteer script.
https://checklyhq.com/headless-recorder
MIT License
15.03k stars 722 forks source link

navigation promise should be created before click that leads to navigation #26

Closed tnolet closed 6 years ago

tnolet commented 6 years ago

The promise creation now occurs after the click. It should be like below.

const navigationPromise = page.waitForNavigation()
await page.click('a')
await navigationPromise