browser takes screenshot

Allows you to capture a full-screen screenshot of a web page.


Example

Running this code will take a full screenshot of "https://www.google.com/", saving it to the Desktop named "Sample.jpg".

plugin command("Browser Automation.dll", "browser connect", "Chrome", "30,0,30,10", "True", "False", "True")
plugin command("Browser Automation.dll", "browser navigate", "https://www.google.com/")
plugin command("Browser Automation.dll", "browser takes screenshot", "{$special folder("Desktop")}\\Sample.jpg", "True")

Was this helpful?