Video
When browser context is created with the recordVideo
option, each page has a video object associated with it.
- Sync
- Async
print(page.video.path())
print(await page.video.path())
方法
delete
Added in: v1.11Deletes the video file. Will wait for the video to finish if necessary.
使用方式
video.delete()
傳回值
path
Added before v1.9Returns 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.
使用方式
video.path()
傳回值
save_as
Added in: v1.11Saves 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.
使用方式
video.save_as(path)
參數
-
path
Union[str, pathlib.Path]#Path where the video should be saved.
傳回值