2021-01-07 20:46:05 +01:00
|
|
|
# class: Video
|
2022-07-06 02:24:50 +02:00
|
|
|
* since: v1.8
|
2021-01-07 20:46:05 +01:00
|
|
|
|
2021-03-31 19:38:05 +02:00
|
|
|
When browser context is created with the `recordVideo` option, each page has a video object associated with it.
|
2021-01-07 20:46:05 +01:00
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
console.log(await page.video().path());
|
|
|
|
|
```
|
|
|
|
|
|
2021-02-26 07:03:39 +01:00
|
|
|
```java
|
|
|
|
|
System.out.println(page.video().path());
|
|
|
|
|
```
|
|
|
|
|
|
2021-01-14 16:48:56 +01:00
|
|
|
```python async
|
|
|
|
|
print(await page.video.path())
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```python sync
|
|
|
|
|
print(page.video.path())
|
|
|
|
|
```
|
|
|
|
|
|
2021-05-14 16:50:35 +02:00
|
|
|
```csharp
|
|
|
|
|
Console.WriteLine(await page.Video.GetPathAsync());
|
|
|
|
|
```
|
|
|
|
|
|
2021-03-31 19:38:05 +02:00
|
|
|
## async method: Video.delete
|
2022-07-06 02:24:50 +02:00
|
|
|
* since: v1.11
|
2021-03-31 19:38:05 +02:00
|
|
|
|
|
|
|
|
Deletes the video file. Will wait for the video to finish if necessary.
|
|
|
|
|
|
2021-01-07 20:46:05 +01:00
|
|
|
## async method: Video.path
|
2022-07-06 02:24:50 +02:00
|
|
|
* since: v1.8
|
2021-01-12 21:14:27 +01:00
|
|
|
- returns: <[path]>
|
2021-01-07 20:46:05 +01:00
|
|
|
|
|
|
|
|
Returns the file system path this video will be recorded to. The video is guaranteed to be written to the filesystem
|
2021-04-02 03:47:14 +02:00
|
|
|
upon closing the browser context. This method throws when connected remotely.
|
2021-03-31 19:38:05 +02:00
|
|
|
|
|
|
|
|
## async method: Video.saveAs
|
2022-07-06 02:24:50 +02:00
|
|
|
* since: v1.11
|
2021-03-31 19:38:05 +02:00
|
|
|
|
|
|
|
|
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
|
2022-07-06 02:24:50 +02:00
|
|
|
* since: v1.11
|
2021-03-31 19:38:05 +02:00
|
|
|
- `path` <[path]>
|
|
|
|
|
|
|
|
|
|
Path where the video should be saved.
|