[MPC-HC.1.6.3.5626]

Check if 'Setup - MPC-HC (License Agreement)' window closed when Alt+A and Alt+N sent and add issue number in debug output in case of failure (CORE-6542).

svn path=/trunk/ahk_tests/; revision=1944
This commit is contained in:
Edijs Kolesnikovičs 2013-02-04 09:32:42 +00:00
parent 677e639745
commit 2c3d66a877

View File

@ -142,7 +142,11 @@ if bContinue
{
SendInput, !a ; Check 'I accept' radiobutton
SendInput, !n ; Hit 'Next' button
TestsOK("'Setup - MPC-HC (License Agreement)' window appeared, Alt+A and Alt+N was sent.")
WinWaitClose,,,3
if ErrorLevel
TestsFailed("'Setup - MPC-HC (License Agreement)' window failed to close despite Alt+A and Alt+N was sent. CORE-6542?")
else
TestsOK("'Setup - MPC-HC (License Agreement)' window appeared, Alt+A and Alt+N was sent.")
}
}