Here is a patch to get version 1.3 to work out of the box with cygwin perl. All of the tests in test.pl pass but that is the extent of my testing. I have not...
120
hellarleo
Jul 31, 2002 3:26 pm
Hi Members! I need to write an script which need to copy a little text at fixed position of an Windows application screen and paste it to another one. Anyone...
119
jimfromf1
Jul 26, 2002 4:07 pm
Hi Ernesto, Thanks for testing it and getting back to me! After more testing, it turns out that it works fine on my Windows 2000 box and fails on my Windows XP...
118
erngui
Jul 26, 2002 9:09 am
Hi, ... I just tried this on my NT box (using 1.49.2): Win32::GuiTest::SendKeys(qq({PAU 5000}{HOME}+{END})) Then I switched over to VC++ and 5 seconds later...
117
ctrondlpaulsden
Jul 25, 2002 11:48 pm
This code should work for you: #!/usr/bin/perl use strict; use warnings; # P.S. I'm using Win32::GuiTest version 1.49-2, available from the Files section of...
116
jimfromf1
Jul 25, 2002 8:38 pm
Hi, I'm trying to do.... Sendkeys("{HOME}+{END}") ...but it doesn't seem to work as expected. It seems that what's actually being sent to the AUT is...
115
wiwowwr
Jul 25, 2002 3:37 pm
I'm running version 1.49 of Win32-GuiTest on Windown NT 4.0. How can I maximize a window through Win32-Guitest which was minimized by a click on the '_' button...
114
Steve DeRidder
verticaltier
Jul 25, 2002 12:32 am
http://groups.yahoo.com/group/perlguitest/files/Win32-GuiTest-1.49.zip one72214 <one72214@...> wrote: HI There, Could anybody please give the URL to,...
113
one72214
Jul 24, 2002 11:59 pm
HI There, Could anybody please give the URL to, or the Win32::GuiTest-1.49 Ver. Thanks...
112
ctrondlpaulsden
Jul 24, 2002 2:16 pm
In your message you mention SendKeys. I'm not sure if this was a typo in your message, but you will most likely want to use SendMouse instead (for mouse...
111
Mathieu Mailhot
shiftibm
Jul 24, 2002 1:39 pm
Hi, I wouldlike to use the Perl "TestGui" lib to test a Java GUI but when I try to send a mouse event to the GUI like this: ...
110
jimfromf1
Jul 18, 2002 5:51 pm
Ahhh, I see now. I was using version 1.31 from CPAN. I just saw the announcement about 1.49 being available (but not in CPAN yet). I just installed 1.49 and...
109
jimfromf1
Jul 18, 2002 5:42 pm
Thanks for the reply! --- but unfortunately I'm having problems with "MenuSelect". "MenuSelect" doesn't seem to be exported by Win32::GuiTest and I get the...
108
ctrondlpaulsden
Jul 18, 2002 4:49 pm
# This example closes Notepad through the menu if it is in the # foreground. Note: Options are available for MenuSelect to close # windows which aren't in the...
107
jimfromf1
Jul 17, 2002 9:24 pm
I'm new to Win32::GuiTest and am having trouble trying to understand how to do some things. For a simple example, I can't see how to access the "File" menu in...
106
erngui
Jul 17, 2002 12:56 pm
... modifiers, ... At the moment no. At first IsKeyPressed only supported things like "A", "C" or "Z". I extended it to support "ESC", "F11",.. Looks like I...
105
amorphis_bwd
Jul 17, 2002 3:17 am
is possible possible to test for keypresses for keys with modifiers, like alt+s?...
104
erngui
Jul 15, 2002 11:49 pm
Hi, looks like a problem with ppm versions. Is GuiTest the first module you've tried to install or have you successfully installed other modules? Could you...
103
scottshea
Jul 10, 2002 9:10 pm
Okay, I feel like an idiot here but PPM gives me this error: Can't find unicode character property definition via main->e or e.pl at unicode/Is/e.pl line 0 ...
102
erngui
Jun 20, 2002 10:39 pm
Hi, ... Yes, you would need to keep alt down while sending several sequential tab keys. The problem is that SendKeys doesn't allow that. If you download the...
101
Jangale V-S
jangalevs
Jun 20, 2002 9:41 am
Hi, I tried switching between windows by using SendKeys("%{TAB}{PAUSE 1000}"); in a loop ! However program keeps on switching between first two windows only ! ...
100
erngui
Jun 19, 2002 4:58 pm
Hi, ... As I posted here http://groups.yahoo.com/group/perlguitest/message/13 Win2K doesn't allow SetFore* unless you're the thread that created the window. If...
99
Jangale V-S
jangalevs
Jun 19, 2002 12:36 pm
Hi all, I want to sendkeys to application thr scheduler ! The application is open in user's login and scheduler service is running in administrative login ! I...
98
Philip Nemec
panemec
Jun 5, 2002 3:46 pm
After some fiddling I got this to work. Yeah. :) What I needed was: SendRawKey(VK_DOWN, KEYEVENTF_EXTENDEDKEY); SendKeys("{PAUSE 50}"); SendRawKey(VK_DOWN,...
97
erngui
Jun 4, 2002 3:11 pm
Forgot another thing: you can use spy--.pl (in the eg directory) to see all the window and window class names you currently have open. E.g.: +0x00020042,...
96
erngui
Jun 4, 2002 3:05 pm
Hi, ... [...] ... If you look at the test code that comes with the module (t/basic.t) you'll see how I play some tricks with the windows calculator app. The...
95
erngui
Jun 4, 2002 2:51 pm
Hi, ... keys ... seem ... I've done some investigation on this. VK_DOWN works for both types of arrow keys, but it looks like you app is also looking at an...
94
perlguitest@yahoogrou...
Jun 4, 2002 2:44 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the perlguitest group. File :...
93
seraph_15217
Jun 4, 2002 2:14 pm
Hi all- I'm still in the process of learning Perl in general--and completely new to the guitest module. I don't know if anyone here can answer my ...
92
Philip Nemec
panemec
Jun 4, 2002 12:37 am
I've come across a program that only responds to the cursor arrow keys (not the num pad arrow keys). Unfortunately the num pad arrow keys seem to be the ones...