mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
1012 B
1012 B
class: Video
When browser context is created with the recordVideo
option, each page has a video object associated with it.
console.log(await page.video().path());
System.out.println(page.video().path());
print(await page.video.path())
print(page.video.path())
async method: Video.delete
Deletes the video file. Will wait for the video to finish if necessary.
async method: Video.path
- returns: <[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.
async method: 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.
param: Video.saveAs.path
path
<[path]>
Path where the video should be saved.