Video
Source URL: https://playwright.dev/docs/api/class-video
Video | Playwright
섹션 제목: “Video | Playwright”When browser context is created with the recordVideo option, each page has a video object associated with it.
console.log(await page.video().path());Methods
섹션 제목: “Methods”delete
섹션 제목: “delete”Added in: v1.11 video.delete
Deletes the video file. Will wait for the video to finish if necessary.
Usage
await video.delete();Returns
path
섹션 제목: “path”Added before v1.9 video.path
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.path();Returns
saveAs
섹션 제목: “saveAs”Added in: v1.11 video.saveAs
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.saveAs(path);Arguments
Path where the video should be saved.
Returns