Package com.microsoft.playwright.impl
Class VideoImpl
java.lang.Object
com.microsoft.playwright.impl.VideoImpl
- All Implemented Interfaces:
Video
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final PageImplprivate final WaitableResult<ArtifactImpl> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoiddelete()Deletes the video file.path()Returns the file system path this video will be recorded to.voidSaves the video to a user-specified path.(package private) voidsetArtifact(ArtifactImpl artifact) private ArtifactImpl
-
Field Details
-
page
-
waitableArtifact
-
-
Constructor Details
-
VideoImpl
VideoImpl(PageImpl page)
-
-
Method Details
-
setArtifact
-
waitForArtifact
-
delete
public void delete()Description copied from interface:VideoDeletes the video file. Will wait for the video to finish if necessary. -
path
Description copied from interface:VideoReturns 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. -
saveAs
Description copied from interface:VideoSaves 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.
-