Minimize QTP
Posted by admin - Apr 6, 2008 Articles, Dani Vainstein, QTips, QTP 0 0 Views : 689 Receive Updates For This Category
Article Tools
- Print this page
- Add Comment
- Send to Friend
- Last Updated on :
Jul 16, 2011
Sometimes when QTP is running the QTP application is in front of the AUT. and you can’t see what is happening on the AUT.
The Solution, is to minimize QTP during run. this function can be placed in a function library file and will be executed every time you run a script.
' ** Minimizing QTP
Set qtp = CreateObject( "QuickTest.Application" )
qtp.WindowState = "Minimized"
Set qtp = Nothing


