mirror of
https://github.com/reactos/ahk_tests.git
synced 2025-02-17 10:10:24 +00:00
![Edijs Kolesnikovičs](/assets/img/avatar_default.png)
Improve uninstall proces, remove/reduce sleep calls, add some more checks. All 4 tests works fine in clean snapshot of win2k3 sp2. svn path=/trunk/ahk_tests/; revision=1721
63 lines
2.7 KiB
AutoHotkey
63 lines
2.7 KiB
AutoHotkey
/*
|
|
* Designed for Mozilla Firefox 3.0.11
|
|
* Copyright (C) 2012 Edijs Kolesnikovics
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
TestName = 2.address_bar
|
|
|
|
; Check if can open some website by typing text in address bar
|
|
TestsTotal++
|
|
if not bContinue
|
|
TestsFailed("We failed somwehere in 'prepare.ahk'.")
|
|
else
|
|
{
|
|
IfWinNotActive, Mozilla Firefox Start Page - Mozilla Firefox
|
|
TestsFailed("'Mozilla Firefox Start Page - Mozilla Firefox' is not active window.")
|
|
else
|
|
{
|
|
SendInput, {ALTDOWN}d{ALTUP} ; Go to address bar
|
|
; copy text to clipboard and compare
|
|
clipboard = ; Empty the clipboard
|
|
Send, ^c
|
|
ClipWait, 2
|
|
if ErrorLevel
|
|
TestsFailed("The attempt to copy text onto the clipboard failed.")
|
|
else
|
|
{
|
|
if clipboard <> http://start.mozilla.org/en-US/
|
|
TestsFailed("Clipboard content is not the same as expected (is '" clipboard "', should be 'http://start.mozilla.org/en-US/') Can't focus address bar using Alt+D?.")
|
|
else
|
|
{
|
|
SendInput, http{:}//dsx86{.}patrickaalto{.}com{ENTER}
|
|
WinWaitActive, DSx86 by Patrick Aalto - Mozilla Firefox,, 7
|
|
if ErrorLevel
|
|
TestsFailed("'DSx86 by Patrick Aalto - Mozilla Firefox' window failed to appear, so, typing URL failed (Alt+D).")
|
|
else
|
|
{
|
|
Sleep, 5500 ; Let it to load the page, maybe we will crash
|
|
Process, Close, %ProcessExe%
|
|
Process, WaitClose, %ProcessExe%, 5
|
|
if ErrorLevel ; The PID still exists.
|
|
TestsFailed("Unable to terminate '" ProcessExe "' process.")
|
|
else
|
|
TestsOK("'DSx86 by Patrick Aalto - Mozilla Firefox' window appeared, so typing URL works (Alt+D), '" ProcessExe "' process closed.")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|