Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

perlguitest · Win32::GuiTest (Perl)

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 2446
  • Category: Perl
  • Founded: Jul 25, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 388 - 418 of 1818   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
388 Kristofer Hoch
kristoferhoch Send Email
Jan 23, 2004
10:28 am
Sandy, This question doesn't really belong here. What you need to to use a newer version of Perl (5.8.2 is out) and Win32::OLE. Try searching the PerlMonks...
389 neesha1_99_99 Send Email Jan 26, 2004
9:50 am
Does anybody know any tutorial (online or book) for win32::guitest which provides all information such as functions from guitest, their definations, examples...
390 neesha1_99_99 Send Email Jan 26, 2004
9:50 am
Thanks, problem was that I should be using winodow handle (get using FindWindowlike()) and not the text of window name. I figured necessity of using sleep, but...
391 Dennis K. Paulsen
ctrondlpaulsden Send Email
Jan 26, 2004
10:32 pm
Hello, The most common scenario is to allow time for the application (GUI) to become ready for interaction/user input. Without a WaitWindow or sleep in the...
392 Dennis K. Paulsen
ctrondlpaulsden Send Email
Jan 26, 2004
10:38 pm
At this time, the only "documentation" that I am aware of for Win32::GuiTest is what comes with the README (perldoc Win32::GuiTest) and the example scripts....
393 s03nk3 Send Email Jan 27, 2004
10:43 am
Hi, recently I discovered Win32::Guitest - thx for wríting this module! ... #!perl #use strict; use Win32::GuiTest qw(FindWindowLike SendMessage...
394 Rahul Chauhan
rahulschauhan Send Email
Jan 27, 2004
11:18 am
I am not a regular user of this module but had once studied the feasibility of using this module. Its a pretty good work and very useful for automation. some...
395 Rahul Chauhan
rahulschauhan Send Email
Jan 27, 2004
11:19 am
Spam detection software, running on the system "mail.citat.se", has identified this incoming email as possible spam. The original message has been attached to...
396 s03nk3 Send Email Jan 27, 2004
2:14 pm
I finally found the problem *g* BM_Click should read BM_CLICK... Now, everything works fine and my eMule can be told to rehash its files from the command line...
397 coastguard12 Send Email Jan 27, 2004
6:27 pm
Does anybody have a code snippet that will find a checkbox in a window and see if it is checked. Is this even possible? Thanks, Chris...
398 Chris Hilton
chris_hilton Send Email
Jan 27, 2004
11:51 pm
I'm not ripping this exactly from my code so it may not exactly work, but it should give you the right idea: $checkbox = (FindWindowLike(undef, "checkbox...
400 bullitt133 Send Email Jan 29, 2004
1:06 pm
How do I go about calling an executable that has spaces in it. Below is what my code currently looks like which returns the error of: Couldn't find the file...
401 Dennis K. Paulsen
ctrondlpaulsden Send Email
Feb 2, 2004
4:14 am
Hello, I'm not sure I've ever used system() with a filename such as this, but here are a couple of options that I see: Cruddy Option 1: ren "Dr.DivX...
402 Steve DeRidder
verticaltier Send Email
Feb 3, 2004
3:28 am
What about using the short name from the old DOS 8.3 days. DRDIVX~1.EXE = Dr.DivX ProfEdit.exe Untested: system ("start DRDIVX~1.EXE"); "Dennis K. Paulsen"...
403 Ken Hommel
khommel Send Email
Feb 3, 2004
10:31 pm
Just out of curiosity: why is this module maintained on a Yahoo Groups site, and not on CPAN? I apologize if this has been discussed before, and I'm not...
404 Ovidiu Padurean
pio0203 Send Email
Feb 4, 2004
1:30 pm
Hello all, you can try something like: my (@args) = ("start","&#92;"application_path\\Dr.DivX ProfEdit.exe&#92;"",); system(@args)==0 or die "system @args failed: $?" ...
405 Dan Neubecker
neubecda Send Email
Feb 4, 2004
9:24 pm
I am trying to use this module with a script I have written for test Internet Explorer, in which I have control of IE using the OLE objects for Explorer. but I...
406 Dennis K. Paulsen
ctrondlpaulsden Send Email
Feb 7, 2004
3:19 pm
Release versions (i.e. 1.30) of this module are distributed to CPAN and the yahoo group... Beta versions (i.e., 1.49.2) are only distributed to the yahoo...
407 tina_amir Send Email Feb 10, 2004
3:54 pm
Hi i want to send 4 "TAB"s successively with folowing script's line $delay = 2000; SendKey("{TAB 4}", $delay) but just i take only 2 TABs Has someone an idea,...
408 shiftibm Send Email Feb 13, 2004
3:13 pm
I have a window with the title "Response"; and with 2 "TEdit" and 1 "TComboBox&quot;. Each widget (seems to) has a label (it's probably a kind of property?). I...
409 Steve West-Fisher
westfisher Send Email
Feb 18, 2004
1:13 pm
I'm having a lot of trouble setting the value of a combo. SendKeys always acts as if it is typing the first letter (which makes sense). I thought that GetFocus...
410 alcam_cs Send Email Feb 19, 2004
11:08 am
... Internet Explorer, in which I have control of IE using the OLE objects for Explorer. ... reason I can't seem to get it to work unless I free my control of ...
411 Dan Neubecker
neubecda Send Email
Feb 19, 2004
4:02 pm
This works, thanks. I just have another question, How can I verify that a Java Applet is completely loaded in IE? So that I can make sure I wait long enough...
412 Dennis K. Paulsen
ctrondlpaulsden Send Email
Feb 20, 2004
3:45 am
02-19-2004 Ernesto, I'm wondering if everything is okay? I've sent you a couple of emails over the past several months and the last I heard from you was in...
413 perlguitest@yahoogrou... Send Email Mar 3, 2004
10:35 pm
Enter your vote today! A new poll has been created for the perlguitest group: What is your overall opinion of WinRunner? o Excellent o Good o Fair o Poor To...
414 Dennis K. Paulsen
ctrondlpaulsden Send Email
Mar 13, 2004
6:43 am
There should be no problem in doing this. I could only imagine that the application you are testing with isn't responding to the first two tabs, so make sure...
415 Dennis K. Paulsen
ctrondlpaulsden Send Email
Mar 13, 2004
9:04 am
Hello All, First, I'd like to mention that it has been highly enjoyable for me over the years to work with and help out those individuals developing on or...
416 Dennis K. Paulsen
ctrondlpaulsden Send Email
Mar 15, 2004
12:26 pm
Gabor, I've thought about stepping in, however one of the biggest issues in doing that is the lack of resources... Projects of this size seem to be like a...
417 perlguitest@yahoogrou... Send Email Mar 15, 2004
12:48 pm
Enter your vote today! A new poll has been created for the perlguitest group: Please read the latest group messages if your unfamiliar with why I'd be asking ...
418 Gabor Szabo
gabor529 Send Email
Mar 16, 2004
10:21 am
... I am not sure if this is a general issue if there is something to do of being on the border line of proprietary and open source software. For that matter...
Messages 388 - 418 of 1818   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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