cancel
Showing results for 
Search instead for 
Did you mean: 

screenshot of a webpage

Anonymous
Not applicable
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

KirankumarMahan
Level 4
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.

MikeHiggs
Level 5
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
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

Denis__Dennehy
Level 15
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.