mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
93e9acc410
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
1.3 KiB
1.3 KiB
sidebar_label |
---|
Page.screencast |
Page.screencast() method
Captures a screencast of this page.
Signature:
class Page {
screencast(options?: Readonly<ScreencastOptions>): Promise<ScreenRecorder>;
}
Parameters
Parameter |
Type |
Description |
---|---|---|
options |
Readonly<ScreencastOptions> |
(Optional) Configures screencast behavior. |
Promise<ScreenRecorder>
Remarks
All recordings will be WebM format using the VP9 video codec. The FPS is 30.
You must have ffmpeg installed on your system.
Example
Recording a page:
import puppeteer from 'puppeteer';
// Launch a browser
const browser = await puppeteer.launch();
// Create a new page
const page = await browser.newPage();
// Go to your site.
await page.goto("https://www.example.com");
// Start recording.
const recorder = await page.screencast({path: 'recording.webm'});
// Do something.
// Stop recording.
await recorder.stop();
browser.close();