take_screenshot {selenider} | R Documentation |
Take a screenshot of the current page
Description
Take a screenshot of the current session state, saving this image to a file.
Usage
take_screenshot(file = NULL, view = FALSE, session = NULL)
Arguments
file |
The file path to save the screenshot to. |
view |
Whether to open the interactively view the screenshot. If this is
|
session |
A |
Value
file
, if it is not NULL
. Otherwise, the session object is returned, invisibly.
See Also
Other global actions:
back()
,
current_url()
,
execute_js_fn()
,
get_page_source()
,
open_url()
,
reload()
Examples
session <- selenider_session()
open_url("https://www.google.com")
file_path <- withr::local_tempfile(fileext = ".png")
take_screenshot(file_path)
[Package selenider version 0.4.0 Index]