Class: Playwright::Video
- Inherits:
-
PlaywrightApi
- Object
- PlaywrightApi
- Playwright::Video
- Defined in:
- lib/playwright_api/video.rb
Overview
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()); “`
Instance Method Summary collapse
-
#path ⇒ Object
Returns the file system path this video will be recorded to.
Methods inherited from PlaywrightApi
Instance Method Details
#path ⇒ Object
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.
12 13 14 |
# File 'lib/playwright_api/video.rb', line 12 def path raise NotImplementedError.new('path is not implemented yet.') end |