2021-01-07 20:46:05 +01:00
|
|
|
# class: Video
|
|
|
|
|
|
|
|
|
|
When browser context is created with the `videosPath` option, each page has a video object associated with it.
|
|
|
|
|
|
|
|
|
|
```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-01-07 20:46:05 +01:00
|
|
|
## async method: Video.path
|
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-02-26 07:03:39 +01:00
|
|
|
upon closing the browser context.
|