mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
22 lines
476 B
Markdown
22 lines
476 B
Markdown
# 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());
|
|
```
|
|
|
|
```python async
|
|
print(await page.video.path())
|
|
```
|
|
|
|
```python sync
|
|
print(page.video.path())
|
|
```
|
|
|
|
## 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.
|