Questions tagged [webpage-screenshot]

A screen dump, screen capture (or screencap), screenshot (or screen shot), screengrab (or screen grab), or print screen is an image taken by the computer user to record the visible items displayed on the monitor, television, or another visual output device.

Screenshots can be used to demonstrate a program, a particular problem a user might be having, or generally when display output needs to be shown to others or archived. For example, after being emailed a screenshot, a Web page author might be surprised to see how his page looks on a different Web browser and can take corrective action.

241 questions
1
vote
4 answers

Chrome Extension - Take screenshot from a URL without showing the page in a tab

My chrome extension is intended to periodically take screenshot from a web URL, and update some local disk data. I know how to do it by opening a new tab and taking the screenshot of it. But is there a way to avoid a new tab being opened, or at…
faham
  • 842
  • 11
  • 17
1
vote
1 answer

Automated web-page screenshots

We have a PC for CSS coder, with 17 different browser versions. I wonder if it is possible to write an automated screenshot script. The algorithm : Script gets the URL(s) to check. Script opens browser, takes screenshot, saves it and if required,…
Jevgeni Smirnov
  • 3,787
  • 5
  • 33
  • 50
0
votes
2 answers

screenshot of a webpage using asp.net without any exe

Is tat possible to get a screenshot of a webpage using asp.net without any exe? If so please provide me some details or links. Note: Since my hosting provider doesn't allow exe's to run, I can't use exes Thanks in Advance
Navin Leon
  • 1,136
  • 3
  • 22
  • 44
0
votes
1 answer

Is there any tool to automatically capture screenshots of running ad campaigns?

Objectif would be to monitor a bunch of websites and automatically take screenshots when a specific ad tag is called (previously defined, belonging to a new campaign)
Matthieu
  • 361
  • 2
  • 6
  • 16
0
votes
1 answer

Previous page screenshot preview

I have a web application in asp.net and C#. I have three step registration process in which in the end I have to show the preview of all three different pages. Is it possible to capture previous pages and show them like
Zerotoinfinity
  • 6,290
  • 32
  • 130
  • 206
0
votes
0 answers

Using Html2canvas in Angular takes transparent screenshots ignoring the background?

I want to take a screenshot of the specific div and then send that file in the Api the div is basically a check book design .The user fills the input field and the check design is selected dynamically . Now the Html2Canvas works fine it takes the…
0
votes
1 answer

Prevent puppeteer goto() from failing when timeout occurs for screenshotting

I am using puppeteer core version 19.6.3 through AWS Lambda to take screenshots of webpages. Here's what my code looks like: // Create a browser instance const browser = await puppeteer.launch({ args: chromium.args, defaultViewport:…
0
votes
0 answers

How to automate taking screenshots of a web page from the local nginx webserver... headless, with no x server or web browser

I need to automate taking full-page screen shots at specific intervals of a web page that is being generated from a web server running on a Raspberry Pi SBC. The Pi is running the latest Bullseye Lite OS (no X server or browser installed), and the…
Jason
  • 101
  • 2
0
votes
0 answers

C# - Get a full url print screen with ads

I'm getting a full print screen from a url with Selenium. My problem is that the ads is not coming with the print. I don't know yet if it´s because the ads are dynamic or because the download time of the page. But I would like to ask if anyone has…
Wilton
  • 218
  • 2
  • 11
0
votes
0 answers

Google Chrome Command Pallete Alternative

I want to get the screenshot command that is used by google chrome commands. If you open up the dev tools and see the console, you can run command+shift+p to get a drop down to run commands, and theres a command there for screenshots that you can…
0
votes
1 answer

"Error: We're sorry, a server error occurred. Please wait a bit and try again." when getting screenshot of the webpage using Google Apps Script

following my previous question, I wanted to get the screenshot of the webpage using Google Apps Script, thanks to Tanaike for the proposed script, it can get the webpage as required. However, after running the script for few times, I started to…
0
votes
2 answers

How to create a screenshot that will include three.js canvases and html with CSS

I have a React app that displays a toolbar and 2 canvases built-in Three.js. I would like to take a screenshot of the entire app. I tried already niklasvh/html2canvas const element = document.getElementsByClassName("contentContainer-5")[0]…
sakul
  • 124
  • 2
  • 12
0
votes
0 answers

Why capture node screenshot not capturing IFrame images correctly?

I am trying to get the images with capture node screenshot option in chrome. It's working on all elements and images except iframe images. For example go to this link (…
0
votes
1 answer

Test (Selenium with C#) fails when run in Visual studio but the report html page shows as passed

I have written a script to login to a webpage. I deliberately give incorrect credentials and click on submit. The test should fail here. When I run from terminal in Visual Studio, I see it fails rightly. But I also have a piece of code to capture…
Megatron
  • 13
  • 1
  • 4
0
votes
1 answer

Is it possible to take a partial screenshot of a WebElement using Selenium?

I'm working on a script that will take the src of a website, and take screenshots of relevant parts of the site. More specifically, I'm interested in taking screenshots of posts from a site, including their respective comments and…