Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New issue #950

Open
masterGoverment opened this issue Jan 18, 2025 · 0 comments
Open

New issue #950

masterGoverment opened this issue Jan 18, 2025 · 0 comments

Comments

@masterGoverment
Copy link

import { createRunner, PuppeteerRunnerExtension } from '@puppeteer/replay'; import puppeteer from 'puppeteer'; const browser = await puppeteer.launch({ headless: true, }); const page = await browser.newPage(); class Extension extends PuppeteerRunnerExtension { async beforeAllSteps(flow) { await super.beforeAllSteps(flow); console.log('starting'); } async beforeEachStep(step, flow) { await super.beforeEachStep(step, flow); console.log('before', step); } async afterEachStep(step, flow) { await super.afterEachStep(step, flow); console.log('after', step); } async afterAllSteps(flow) { await super.afterAllSteps(flow); console.log('done'); } } const runner = await createRunner( { title: 'Test recording', steps: [ { type: 'navigate', url: 'https://wikipedia.org', }, ], }, new Extension(browser, page, 7000) ); await runner.run(); await browser.close();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant