Is there a way to get the screenshot of the complete web page while doing visual regression testing?

Is it possible to take a screenshot of the entire web page while performing visual regression testing?

Hey Miro, At the moment, the LambdaTest VR tool captures the screenshot of the viewport only. As a workaround, you can use Javascript executors to scroll and capture the screenshot of the full page.

Example: js.executeScript(“window.scrollBy(0,1000)”); // to scroll down the page by 1000 pixel vertical