Micro Focus QTP (UFT) Forums
QTP V11, How do I make a popup message appear during the test? - Printable Version

+- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums)
+-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP)
+--- Forum: UFT / QTP Beginners (https://www.learnqtp.com/forums/Forum-UFT-QTP-Beginners)
+--- Thread: QTP V11, How do I make a popup message appear during the test? (/Thread-QTP-V11-How-do-I-make-a-popup-message-appear-during-the-test)



QTP V11, How do I make a popup message appear during the test? - DanielElsner - 06-03-2011

There's a certain part in one of my tests that QTP can't really handle, so I need to create a popup message that prompts the user to perform a small task so that the test can continue on it's way.

How do I make a popup message that would ask the user to do something, and then have an OK button so that QTP knows when it has been done and can proceed with the test?


RE: QTP V11, How do I make a popup message appear during the test? - Ankur - 06-03-2011

Insert this -

msgbox "Do something Dan"


RE: QTP V11, How do I make a popup message appear during the test? - DanielElsner - 06-03-2011

Wow, well that was easy. Thanks!