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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 1366 - 1395 of 1815   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1366
Hi I'm having some trouble with the GetPopupHandle function. It never seems to bring back a handle. It always returns 0. After looking into the .XS file, I...
brentje
Offline Send Email
Jun 1, 2006
6:00 pm
1367
Hello, You can find the X11:GUITest site at http://sourceforge.net/projects/x11guitest. If you have questions about this product, let me know at...
Dennis K. Paulsen
ctrondlpaulsden
Offline Send Email
Jun 2, 2006
5:02 am
1368
Perl functions, by default, return the last variable computed. I haven't tried the GetPopupHandle function, but I often have to add a "sleep" to give windows...
Timothy Mitchell
tmaxquig
Offline Send Email
Jun 2, 2006
6:25 pm
1369
Hi Sundar, Have you heard of something called google. Go to google.com and search for "Learning perl" Sam nancy sherwood <kidofsherlock@...> wrote: try...
Susruth Sudhakaran
sush_1205
Offline Send Email
Jun 2, 2006
8:49 pm
1370
Has anyone else had this problem? Try this function. $Title is the string title of a window with the button to test. $ButtonToCheck is the string caption on...
Tim Mitchell
tmaxquig
Offline Send Email
Jun 2, 2006
8:59 pm
1371
Hello, If this is a regular button, it is either enabled or disabled, see IsWindowEnabled. IsGrayedButtton is for radio buttons or checkboxes, per Microsoft...
Dennis K. Paulsen
ctrondlpaulsden
Offline Send Email
Jun 3, 2006
4:47 am
1372
Thanks Dennis, I think you are right. I was using http://www.piotrkaluski.com/files/winguitest/docs/index.html as a guide to the GuiTest functions. Maybe Pior...
Tim Mitchell
tmaxquig
Offline Send Email
Jun 3, 2006
9:21 pm
1373
Hi Tim, I think my documentation is correct, but I do agree with you, that there is a big chance for confusion. So I added a little warning to the...
Piotr Kaluski
pkaluski
Offline Send Email
Jun 3, 2006
9:56 pm
1374
Piotr, Thanks for clearing that up. The new note on the documentation helps. I guess I don't understand what an "indeterminant" state is. Can't we always...
Tim Mitchell
tmaxquig
Offline Send Email
Jun 4, 2006
4:48 am
1375
Best example is probably a folder's property for the 'Read Only' in explorer. If the files in the folder are read-only and some are full access, the checkbox...
stuart arnold
sarnold_688
Offline Send Email
Jun 4, 2006
9:47 am
1376
Hi, To solve a problem we have with a third party application for automating Microsoft office tasks I quickly wiped up a Perl script using Win32::GuiTest,...
funny_face_marto
funny_face_m...
Offline Send Email
Jun 5, 2006
4:40 am
1377
Hi All, I'm trying to automate a Application on Windows Vista OS using PERL, It would be great if you can send me the link the useful documents to write the...
Girish
girishwill@...
Send Email
Jun 5, 2006
4:42 am
1378
In Windows no window can be active when the screen is locked (a security mechanism). So, you have no target to sendkeys to when you have a locked screen....
Tobin Cataldo
tobin_cataldo
Offline Send Email
Jun 5, 2006
1:04 pm
1379
Just to be really preemptive.... If you want to change autologin properties from Perl use Win32::TieRegistry. use Win32::TieRegistry ( TiedHash=>\%reg, ...
Tobin Cataldo
tobin_cataldo
Offline Send Email
Jun 5, 2006
1:04 pm
1380
http://search.cpan.org/dist/Win32-GuiTest/...
Tobin Cataldo
tobin_cataldo
Offline Send Email
Jun 5, 2006
1:09 pm
1381
Hi Girish, You can use the "autoit" library for Windows GUI. You can use the DLL given by this library and import it in PERL. This is freely available on net. ...
sujit apte
i_marshal_92
Offline Send Email
Jun 5, 2006
2:25 pm
1382
Hello, I'm having trouble using SendMessage to get the rectangle coordinates of an item using LB_GETITEMRECT. my $member = "ABC"; # Use LB_FINDSTRINGEXACT...
Tim Mitchell
tmaxquig
Offline Send Email
Jun 6, 2006
5:05 pm
1383
OK, I got it, thanks to Brentje's post #1273. The key seems to be defining $ptr with: $ptr = pack( "LLLL", 0,0,0,0); and then packing it again with: pack('P',...
Tim Mitchell
tmaxquig
Offline Send Email
Jun 7, 2006
6:57 am
1384
Hi all, Is there any module to automate "HTML pages created with the help of Java script". I just checked with Win32::SAM module, the module couldn't recognize...
meetdeepakb
Offline Send Email
Jun 8, 2006
10:55 am
1385
... AFAIK there is no stand alone solution to this issue and even if there was the Javascript engine in such soultion would be different from the one in...
Gabor Szabo
gabor529
Offline Send Email
Jun 8, 2006
11:14 am
1386
This depends what you are trying to do. Your question is not clear on this. Automate "HTML pages created with the help of JavaScript"? If by this you mean test...
Martin McGrath
funny_face_m...
Offline Send Email
Jun 8, 2006
11:16 am
1387
Hi. It seems you can`t do that directly. Here`s the explanation: http://search.cpan.org/dist/WWW-Mechanize/lib/WWW/Mechanize/FAQ.pod Well, you can pass urls...
Alex Morozov
inductor1975
Offline Send Email
Jun 8, 2006
11:18 am
1388
... You should look at Selenium and it's Perl controller: http://search.cpan.org/~lukec/Test-WWW-Selenium/lib/WWW/Selenium.pm http://www.openqa.org/selenium/ ...
chrs_mcmhn
Offline Send Email
Jun 8, 2006
3:44 pm
1389
Has anybody found a solution to this without using SendRawKey? SendKeys("+({DOWN 100})"); and{PGDN} jam the shift as well, without actually highlighting....
tobin_cataldo
Offline Send Email
Jun 10, 2006
6:17 am
1390
Hi I'm currently building a graphical test runner for my testing scripts, and I'd like a way to watch for a special combination of key strokes ...
brentje
Offline Send Email
Jun 10, 2006
6:19 am
1391
Hi, Is there any way to access menus? What is want to automate is to open the explorer window and Map a drive using the Map network drive wizard. I'm able to...
Sundeep Gupta
sundeep_techie
Offline Send Email
Jun 12, 2006
9:09 am
1392
I have seen/heard rumors that some SendKeys functionality will be changed/removed in Windows Vista. Curious if anyone has used Win32::GuiTest with Windows...
marshall_onsrud
Offline Send Email
Jun 16, 2006
1:43 pm
1393
Dear All, I have an application of class type "javax.swing.JFrame" and it has two buttons "Next" and "Cancel". I am able to find the parent window. The problem...
Sachin Tiwari
sach_tiw
Offline Send Email
Jun 19, 2006
9:15 am
1394
Can you "see" them using Spy++ (free from VC++, elsewhere(?)). Another one (much better) is WinSpector(free). http://www.windows-spy.com/ ...
stuart arnold
sarnold_688
Offline Send Email
Jun 19, 2006
9:44 am
1395
Hi, No, i am not able to see them. Only the main GUI window is getting shown in the list and not the buttons on the window. Thanks, ... ...
Sachin Tiwari
sach_tiw
Offline Send Email
Jun 19, 2006
12:51 pm
Messages 1366 - 1395 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