How to capture entire website snapshot till bottom in Blueprism ???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-08-19 12:27 PM
Hi Guys,
is there any way in blueprism to take entire webpage screenshot till bottom once.
I did some google and found multiple method taking screenshot but that only takes current active screen snapshot but i want entire web page snapshot.
Thanks
------------------------------
Anuj q
q
a
UTC
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-08-19 11:03 AM
Am I correct in assuming the active screen snapshot isn't good enough because the webpage is taller than the screen and you want a snapshot of everything on the page?
------------------------------
Dave Morris
3Ci @ Southern Company
Atlanta, GA
------------------------------
Dave Morris, 3Ci at Southern Company
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-08-19 12:32 PM
The requirement is to taking screenshot not saving the same with HTML format.
As with Print screen command entire desktop view captures like bottom window bar and browser navigation menus and tabs,
Can we get only website response as image in BP.
Thanks
------------------------------
Anuj q
q
a
UTC
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-08-19 12:02 PM
Anyway, what worked for me was to use a Read stage and read the attributes of that element for "Width", "Height", and then I used first 2 numbers in the Screen Bounds values which represent left and top. If you use a Read stage to get the attribute "Screen Bounds", it will return a value like RECT:399,165,1100,1511. The first number is left and the second number is top. That gets you the four inputs you need for the code below. You'll want to build some logic to get those numbers reliably and do some various testing of course. I just tested this really quick so no guarantees. 😃
Create number inputs to the code stage and provide numbers like I showed above:
- width
- height
- left
- top
- System.dll
- System.Data.dll
- System.Xml.dll
- System.Drawing.dll
- System.Windows.Forms.dll
- System
- System.Drawing
- System.Data
- System.Drawing.Imaging
- System.Windows.Forms
var bmpScreenshot = new Bitmap(width, height, PixelFormat.Format32bppArgb); var gfxScreenshot = Graphics.FromImage(bmpScreenshot); gfxScreenshot.CopyFromScreen(left, top, 0, 0, bmpScreenshot.Size, CopyPixelOperation.SourceCopy); var filename = "C:\\Temp\\TestIEWebpage.png"; bmpScreenshot.Save(filename, ImageFormat.Png);
------------------------------
Dave Morris
3Ci @ Southern Company
Atlanta, GA
------------------------------
Dave Morris, 3Ci at Southern Company
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-08-19 04:55 PM
Just tested the solution @Dave Morris posted. While quick and efficient, it's still limited to the screen bounds for what it'll actually fill in. (I set it to a height of 4096 for testing.)
It sounds like you're wanting something that can capture beyond the bounds (cue Zone of the Enders music); I've found a couple libraries out there, but they seem to want a pre-defined URL so they can open it in a browserless manner. (IE: http://4rapiddev.com/csharp/c-save-web-page-url-to-image/#prettyPhoto ) If you don't need to login to whichever page it is, something like this might work.
Alternatively, you can leverage a virtual printer driver and send Ctrl+P to the browser. This one seems to be free and has no watermark: https://download.cnet.com/PDFill-Free-PDF-Editor-Basic/3000-18497_4-77622696.html?part=dl-&subj=dl&tag=button (Disregard PDF in the title - it'll still save images instead.)
Edit: Or if they'll accept a .XPS file, that print functionality is already available natively.
------------------------------
Ami Barrett
Lead RPA Software Developer
Solai & Cameron
America/Chicago
------------------------------
