Cannot use Ctrl+Alt+F5 to interrupt test case execution from UFT

  • KM01432397
  • 06-Mar-2015
  • 06-Mar-2015

This document has not been formally reviewed for accuracy and is provided "as is" for your convenience.

Summary

Ctrl+Alt+F5 cannot interrupt test case from UFT, while it is working fine in QTP.

Question

Ctrl+Alt+F5 cannot interrupt test case from UFT, while it is working fine in QTP. Is there any feature change for that?

Answer

There’s a problem in “Ctrl+Alt+F5” on UFT.
As a “dumb” workaround, user can create a vbs file with below script:
  Set qtApp = CreateObject("QuickTest.Application")
  qtApp.Test.Stop
  msgbox “Test stopped!”
Every time user want to stop the testing, he can run the script.