Search the web
Sign In
New User? Sign Up
perlguitest · Win32::GuiTest (Perl)
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 202 - 231 of 1815   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
202
Yes, the MenuSelect function and its documentation (README.html) is available in Win32-GUITest v1.49 or greater(v1.49.2), however these builds are considered...
Dennis K. Paulsen
ctrondlpaulsden
Offline Send Email
May 1, 2003
6:44 pm
203
Hello folks, silly question but one I'm stuck on. I'm using: use Win32::GuiTest qw/SendKeys/; SendKeys("(^%{DELETE})"); To atempt to send a ctrl-alt-del to a...
Rick
rick_gerdes2000
Offline Send Email
May 2, 2003
7:42 pm
204
HI , I have a requirement , i need to test for the broken link within my web application, can this be done using perl. If this can be automated using perl...
Rajeev J
jrajeev@...
Send Email
May 6, 2003
5:59 am
205
I have a web page which has 2 huge text fields in that , what i am trying to do in perl is copy the content in these edit fields and paste it into a different...
Rajeev J
jrajeev@...
Send Email
May 9, 2003
3:47 am
206
Hi, I think you're right in that you cannot send the CTRL+ALT+DEL sequence from a program. Probably a feature they designed in for security reasons? If you...
Ernesto Guisado
erngui
Offline Send Email
May 10, 2003
10:37 am
207
Hi, Was anyone able to send a Mouse Double Click using the Win32::GuiTest module. I tried the below, but they doesnot seem to work. ...
p_abhijith
Offline Send Email
May 14, 2003
10:06 pm
208
Hello, First, make sure you are using SendMouse and not SendKeys to do this.. And try using the following statement: SendMouse("{LEFTCLICK}{LEFTCLICK}"); ...
Dennis K. Paulsen
ctrondlpaulsden
Offline Send Email
May 15, 2003
12:08 am
209
Hello, You could use SendKeys("{TAB}") to switch focus between the two text fields. Also, Win32::Clipboard may work okay for retrieving the text back from the...
Dennis K. Paulsen
ctrondlpaulsden
Offline Send Email
May 15, 2003
12:29 am
210
Sorry, I'm not aware of a readily available version of Win32::GuiTest that includes this functionality. One thing to note about this functionality is that...
Dennis K. Paulsen
ctrondlpaulsden
Offline Send Email
May 15, 2003
12:43 am
211
ugh, never mind. my bad, its working fine. used the wrong command. use Win32::GuiTest qw(SendKeys SendMouse); SendMouse("{LEFTCLICK}{LEFTCLICK}"); print ("Sent...
p_abhijith
Offline Send Email
May 15, 2003
1:13 am
212
Has anyone tried to send in mouse wheel up and down movements? There doesn't seem to be a function for it. Thanks! __________________________________ Do you...
B Garakani
behrang22
Offline Send Email
May 15, 2003
11:47 pm
213
It seems that SendMouseMove is multiplying everything by 3 (with Perl 5.6.8 and Windows XP). #!/usr/bin/perl use Win32::GuiTest qw(:ALL); SendMouseMoveAbs(0,...
Philip Nemec
panemec
Offline Send Email
May 21, 2003
5:18 am
214
It seems that SendMouseMove is multiplying everything by 3 (with Perl 5.8.0 and Windows XP). #!/usr/bin/perl use Win32::GuiTest qw(:ALL); SendMouseMoveAbs(0,...
Philip Nemec
panemec
Offline Send Email
May 21, 2003
5:18 am
215
I am new at this so please bear with me. I am trying to fill in a text box in one application (Remedy) with data from a Perl script. I am having trouble...
Carner, Philipp W
pcarnerpc210018
Offline Send Email
May 21, 2003
11:38 am
216
Anybody else having a problem with MenuSelect? I'm using "Win32-GuiTest-1.49.2". For me it works fine on SDI applications such as Notepad and on MDI ...
timhood40
Offline Send Email
May 23, 2003
4:51 pm
217
Hi, i have a Java Applet window,i wouild like to send Non-Ascii (For Ex: using the keyboard sequence Alt+0181) characters from it using the SendKeys function. ...
deepakcste
Offline Send Email
May 27, 2003
11:26 am
218
Hi Is there any other way of converting .pl files to .exe other than the PearlApp method in the Activeperl Dev kit. Rajeev...
Rajeev J
jrajeev@...
Send Email
May 30, 2003
11:38 am
219
There is a *perlcc* perl.pl -o perl.exe you could try, or you could buy a copy of perl2exe REgards Afshin...
Afshin Bozorgzadeh
afshinbozorg
Offline Send Email
May 30, 2003
12:50 pm
220
Hello, The textbox control you seek could be hiding underneath several child windows... So, what follows is a link to a free tool to help in identifying...
Dennis K. Paulsen
ctrondlpaulsden
Offline Send Email
May 31, 2003
5:57 am
221
Hi, Upon experimenting with this on a simple MFC AppWizard generated MDI application (with child maximized), I also witnessed the crash... By adding the...
Dennis K. Paulsen
ctrondlpaulsden
Offline Send Email
May 31, 2003
6:59 am
222
Hi, I don't recall ever using SendMouseMoveRel, but I do believe the x/y parameters supplied to it are supposed to be in what are known as "mickeys", not pixel...
Dennis K. Paulsen
ctrondlpaulsden
Offline Send Email
May 31, 2003
7:26 am
223
Hello, Sorry, I'm not aware of a currently available Win32::GuiTest function to do this either.. Developer Note: With a bit of work, it looks like mouse_event...
Dennis K. Paulsen
ctrondlpaulsden
Offline Send Email
May 31, 2003
7:41 am
224
I do like the enhancements this tool provides, but when I drag the icon over the text box I need the info for, there is nothing displayed. Which is true for...
Carner, Philipp W
pcarnerpc210018
Offline Send Email
Jun 2, 2003
10:39 am
225
just a quick question here... ive looked around quite a bit and was unable to come up with an answer for this- most functions only operate on the currently...
merkur2k
Offline Send Email
Jun 3, 2003
4:48 pm
226
I'm learning Win32::GuiTest to use as an example in my perl scripting tutorial at the Software Test Automation Conference. My first project was modifying...
Danny Faught
sw_alchemist
Offline Send Email
Jun 3, 2003
9:35 pm
227
I've never seen this behavior before, maybe someone else has? Otherwise, if you could provide more information on the application you are working with, maybe...
Dennis K. Paulsen
ctrondlpaulsden
Offline Send Email
Jun 4, 2003
12:22 am
228
Internal to both of these functions are calls to Windows API functions; which implement functionality in the same way, i.e., they operate on the currently...
Dennis K. Paulsen
ctrondlpaulsden
Offline Send Email
Jun 4, 2003
2:15 am
229
Hello, I believe WaitWindow was recently implemented, so it is possible that several of the samples haven't been updated as of yet. Here is a slight...
Dennis K. Paulsen
ctrondlpaulsden
Offline Send Email
Jun 4, 2003
2:39 am
230
The application that exhibits this behavior is called "Remedy". It is a big bucks application the company uses at our call center to track orders. It does...
Carner, Philipp W
pcarnerpc210018
Offline Send Email
Jun 4, 2003
10:29 am
231
I've opened a window via a menu command and have sent keys ("+ {TAB}") to get to the appropriate edit field in the window. Then I use SendKeys to send data to...
Plummi Dee
plummidee
Offline Send Email
Jun 4, 2003
4:09 pm
Messages 202 - 231 of 1815   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help