Skip to main content

Video

When browser context is created with the recordVideo option, each page has a video object associated with it.

Console.WriteLine(await page.Video.GetPathAsync());

Methods

DeleteAsync

Added in: v1.11 video.DeleteAsync

Deletes the video file. Will wait for the video to finish if necessary.

Usage

await Video.DeleteAsync();

Returns


PathAsync

Added in: v1.8 video.PathAsync

Returns the file system path this video will be recorded to. The video is guaranteed to be written to the filesystem upon closing the browser context. This method throws when connected remotely.

Usage

await Video.PathAsync();

Returns


SaveAsAsync

Added in: v1.11 video.SaveAsAsync

Saves the video to a user-specified path. It is safe to call this method while the video is still in progress, or after the page has closed. This method waits until the page is closed and the video is fully saved.

Usage

await Video.SaveAsAsync(path);

Arguments

  • path string#

    Path where the video should be saved.

Returns