Is it possible to have Selenium Basic (via VBA) to output a screenshot as a base64
image?
I can successfully take a screenshot using:
Set sc = element.TakeScreenshot
I have tried:
sc.getScreenshotAsBase64
But it doesn't work. Is this possible to achieve?
Thanks.