I'm using TestComplete. I need to capture a screenshot and place it in a particular folder. How to do this using VBScript?
相关问题
- How to take screenshots of running iPhone from bac
- How to programmatically convert Access 1997 .mdb t
- How to scale down the size and quality of an Buffe
- VBScript / ADODB Syntax Issue with adArray?
- How to check default host for VBScript is WScript
相关文章
- Can a VBScript function return a dictionary?
- UTC Time Assignment in VBScript
- Copy and Rename File VBScript
- How do I open a file with VBScript?
- Import WinAPI Function in *.VBS File
- Error while executing adb command programmatically
- How to reference the mail which triggered the outl
- Classic ASP/VBScript implementation of Crockford
To capture a desktop screenshot, use the
Sys.Desktop.Picture
method. To save the resulting image to a file, use itsSaveToFile
method:Alternatively, you can turn on the Test Visualizer to automatically capture screenshots for your test actions.