mirror of
https://github.com/reactos/ahk_tests.git
synced 2024-11-30 15:00:36 +00:00
21d55a9061
Match new design, add few more checks. Both tests works fine in win2k3 sp2. svn path=/trunk/ahk_tests/; revision=1611
95 lines
4.6 KiB
AutoHotkey
95 lines
4.6 KiB
AutoHotkey
/*
|
|
* Designed for Foxit Reader 2.1.2023
|
|
* 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.GoToPage
|
|
szDocument = %A_WorkingDir%\Media\Book.pdf ; Case sensitive!
|
|
|
|
; Test if can open PDF document, go to page 29, close document, exit Foxit Reader.
|
|
TestsTotal++
|
|
RunApplication(szDocument)
|
|
if not bContinue
|
|
TestsFailed("We failed somwehere in 'prepare.ahk'.")
|
|
else
|
|
{
|
|
SplitPath, szDocument, NameExt
|
|
WinWaitActive, %NameExt% - Foxit Reader 2.1 - [%NameExt%],,7
|
|
if ErrorLevel
|
|
TestsFailed("Window '" NameExt " - Foxit Reader 2.1 - [" NameExt "]' failed to appear.")
|
|
else
|
|
{
|
|
SendInput, *^{1} ; Scortcut for RMB option 'Actual Size'
|
|
WinMenuSelectItem, %NameExt% - Foxit Reader 2.1 - [%NameExt%], , Document, Go to Page ; File menu: Document -> Go to Page
|
|
if ErrorLevel
|
|
TestsFailed("Unable to hit 'Document -> Go to Page'.")
|
|
else
|
|
{
|
|
WinWaitActive, Go to Page,, 5 ; Note two spaces between 'to' and 'Page'
|
|
if ErrorLevel
|
|
TestsFailed("Window 'Go to Page' failed to appear [Note two spaces between 'to' and 'Page'].")
|
|
else
|
|
{
|
|
ControlSetText, Edit1, 29, Go to Page ; enter '29' as page number
|
|
if ErrorLevel
|
|
TestsFailed("Unable to enter page number '29' in 'Go to Page' window.")
|
|
else
|
|
{
|
|
ControlClick, Button1, Go to Page
|
|
if ErrorLevel
|
|
TestsFailed("Unable to hit 'OK' button in 'Go to Page' window.")
|
|
else
|
|
{
|
|
Sleep, 2000 ; Load page properly before searching for image on the screen
|
|
SearchImg = %A_WorkingDir%\Media\BookPage29Img.jpg
|
|
|
|
IfNotExist, %SearchImg%
|
|
TestsFailed("Can NOT find '" SearchImg "'.")
|
|
else
|
|
{
|
|
ImageSearch, FoundX, FoundY, 0, 0, A_ScreenWidth, A_ScreenHeight, *14 %SearchImg% ; 14 is best what Windows can do
|
|
if ErrorLevel = 2
|
|
TestsFailed("Could not conduct the ImageSearch ('" SearchImg "' exist).")
|
|
else if ErrorLevel = 1
|
|
TestsFailed("The search image '" SearchImg "' could NOT be found on the screen.")
|
|
else
|
|
{
|
|
OutputDebug, OK: %TestName%:%A_LineNumber%: Found image on the screen, so, page 29 was displayed correctly. Next step - close document.`n
|
|
Sleep, 1000
|
|
SendInput, {CTRLDOWN}w{CTRLUP} ; Shortcut to close document
|
|
Sleep, 2000 ; Let some error to come up
|
|
WinWaitActive, Foxit Reader 2.1,,5
|
|
if ErrorLevel
|
|
TestsFailed("Window 'Foxit Reader 2.1' failed to appear after closing document.")
|
|
else
|
|
{
|
|
WinClose, Foxit Reader 2.1
|
|
WinWaitClose, Foxit Reader 2.1,,4
|
|
if ErrorLevel
|
|
TestsFailed("Window 'Foxit Reader 2.1' failed to close.")
|
|
else
|
|
TestsOK("Successfully opened PDF document, loaded page 29, closed document, closed Foxit Reader application.")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|