screenshot of a webpage
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
17-04-18 03:56 PM
Hello everyone,
- can someone help me to capture a screenshot from a webpage and send the screenshot to a mail
- can you also inform me how to use key combination ( e.g. printscreen key) in blueprism
Thank you very much
4 REPLIES 4
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
18-04-18 02:04 PM
Hi Susheel,
Use the keyword ""{PRTSC}"" as global send key in navigation to take a screenshot of web page. You can use Word VBO to paste this screen shot in a word document.
Regards,
Kirankumar Mahanthi.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
18-04-18 03:33 PM
Hi, we use a code stage.
Grab Image Action
Bitmap bmpScreenCapture = new Bitmap(Screen.PrimaryScreen.Bounds.Width,Screen.PrimaryScreen.Bounds.Height);
using (Graphics g = Graphics.FromImage(bmpScreenCapture))
{
g.CopyFromScreen(Screen.PrimaryScreen.Bounds.X,
Screen.PrimaryScreen.Bounds.Y,
0, 0,
bmpScreenCapture.Size,
CopyPixelOperation.SourceCopy);
}
OutImage = bmpScreenCapture;
You can then save it to a network location that support / whoever has access to... we use this in our exception handling patterns (v5)
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
25-04-18 09:57 PM
Michael - this will take a screenshot of the entire screen, right? Any code that will capture part of the screen similar to a snipping or snagit tool? I am hoping I can specify the coordinates/bounds or size
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
27-04-18 03:58 PM
Blue Prism Surface Automation allows you to take an image of a region - I suggest using that (it is what it was created for) - then maybe code to write your captured bitmap to file.
