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

how I can record a waiting time ? #15

Closed Sanford284 closed 6 years ago

Sanford284 commented 6 years ago

If I want to wait 3s, then click a element. what should the generated code do ?

tnolet commented 6 years ago

Hi @yuwanlin you cannot record a waiting time. It is not a feature yet. The only waiting time included is on "hard" page navigations. You will manually have to insert await page.waitFor(3000) lines for now.