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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 558 - 587 of 1815   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
558
Hi all, I'm trying to use Win32::GuiTest to automate the installation of an application. I'm trying to get FindWindowLike() to spot when a window appears with...
Dan Bennett
foxcorner
Offline Send Email
Sep 8, 2004
12:02 pm
559
Hi, I am new to this module and trying out some functions. In FindWindowLike() function we nwwd to provide numeric id of window. can anybody tell me how to get...
calltoprashant
Offline Send Email
Sep 8, 2004
2:05 pm
560
... It would be much easier to guess if you sent in the code you are running that gives you this error message. regards Gabor...
Gabor Szabo
gabor529
Offline Send Email
Sep 8, 2004
2:05 pm
561
Hi. Apologies if this is a double post. I am having some problems with the GetComboContents and/or GetComboText functions. Having identified the combo box I...
robert529742
Offline Send Email
Sep 8, 2004
2:05 pm
562
Hey. My first posting to this group, be gentle! I am having problems with a bit of code to retrieve the contents of a combo box. I can identify the box, get...
robert529742
Offline Send Email
Sep 8, 2004
2:05 pm
563
Hi, I think there is no way to identify paricular tray icon as a object. But still you can identify the trayicon by its tool tip and move mouse over there then...
Nagarajan M
naga_cit
Offline Send Email
Sep 8, 2004
2:05 pm
564
Hi, I'm new to Guitest, and fairly new to Perl. :-) I'm planning to automate the running of some benchmarks on WinXP, and Guitest looks like it'll be ideal for...
Dan Bennett
foxcorner
Offline Send Email
Sep 8, 2004
2:06 pm
565
1. You should probably try running your code with the -w switch to Perl (perl -w program.pl) or add the 'use warnings' pragma to your code; among possibly...
Chris Hilton
chris_hilton
Online Now Send Email
Sep 8, 2004
4:02 pm
566
... maybe /Pro\/ENGINEER 2001.*Setup/ Gabor...
Gabor Szabo
gabor529
Offline Send Email
Sep 12, 2004
12:56 pm
567
Hi, Thanks for the replies! I hoped to have all the element text from the GetComboContents call. When I got a list back ( garbage looking data but the correct...
robert529742
Offline Send Email
Sep 12, 2004
12:56 pm
568
Hi again, Another question... There's a window which shows a progress bar and a "Cancel" button. When the task is finished, the "Cancel" button disappears and...
Dan Bennett
foxcorner
Offline Send Email
Sep 12, 2004
12:58 pm
569
how does one send ctrl + left click? Where can I get the latest win32::GuiTest? CPAN has an old version, I remember seeing a newer one somewhere else. thanks,...
Coleman Tom
tom_g_coleman
Offline Send Email
Sep 12, 2004
12:59 pm
570
Microsoft Spy++ will probably find your id, im not sure, it finds handles, i could of swore that findwindowlike() would find those if you didnt put in that...
Jacob Glide
glid82
Offline Send Email
Sep 12, 2004
1:01 pm
571
Hello, I was looking a way to select the textbox and the button of the application I would like to drive. ...
ykozlo
Offline Send Email
Sep 12, 2004
1:01 pm
572
Yes "there is more than a way do do the job". Well, Vb code: textbox = FindWindowEx(myapp, 0&, "edit", vbNullString) Perl code: my ($textbox) =...
ykozlo
Offline Send Email
Sep 12, 2004
1:02 pm
573
ok I don't understand anymore, previous code was my $WM_SETTEXT="\x0C"; It appear that $WM_SETTEXT is a string I Don't remenber how to affect an hexa to a...
ykozlo
Offline Send Email
Sep 12, 2004
1:03 pm
574
SPY++ is the basic one to use, however, "Winspector" does a much better job and its free. here's the link http://www.windows-spy.com/ there's a lot in it, much...
Stuart Arnold
sarnold_688
Offline Send Email
Sep 12, 2004
8:23 pm
575
You might try the following for ctrl + left click: SendRawKey(VK_LCONTROL); SendMouse("{LEFTCLICK}"); SendRawKey(VK_LCONTROL, KEYEVENTF_KEYUP); The latest...
Chris Hilton
chris_hilton
Online Now Send Email
Sep 13, 2004
4:07 pm
576
Assuming the "Finish" button already exists but is hidden, you should be able to use FindWindowLike() to get the button's window handle and then: do {...
Chris Hilton
chris_hilton
Online Now Send Email
Sep 13, 2004
4:14 pm
577
Upon further research, you're essentially right saying it's the wrong sort of combo box, at least according to this microsoft.public.vb.winapi newsgroup: ...
Chris Hilton
chris_hilton
Online Now Send Email
Sep 13, 2004
4:29 pm
578
Still having grief getting the text out of a combo box :( Could one of you clever chaps post me a short snippet of code that sucessfully manages to get text...
robert529742
Offline Send Email
Sep 14, 2004
10:35 am
579
yes, ive used that before. i couldnt remember that name. last time i used it it was a big resource hog for me, but then again im working on a very slow machine...
Jacob Glide
glid82
Offline Send Email
Sep 14, 2004
10:35 am
580
Bingo! Thanks a million Chris. I will have a look at that code and see if I can make some progress with it. -Ed. ... wrong sort ... 8&safe=off&th=e8e1e800df90 ...
robert529742
Offline Send Email
Sep 14, 2004
11:49 am
581
Thanks Chris, Your hint was enough for me to figure it out. My questions will become less dumb as I get the hang of this. :-) Dan ... ...
Dan Bennett
foxcorner
Offline Send Email
Sep 14, 2004
11:50 am
582
I recently wrote a review of MWSnap for Open Testware Reviews, and found that it includes a "Window Info Tool" that shows coordinates, class name, and handle...
Danny R. Faught
sw_alchemist
Offline Send Email
Sep 14, 2004
2:23 pm
583
Hi, I had the same problem. And I believe I have found the reason why it happens. I placed a detailed explanation on my website. Have a look: ...
pkaluski
Offline Send Email
Sep 30, 2004
3:24 pm
584
nice article. interesting how the id and window text can get mixed up Some languages allow you to specify if the value being provided is a handle, id, or...
Coleman Tom
tom_g_coleman
Offline Send Email
Oct 1, 2004
9:00 am
585
I am glad to let you know that Ernesto gave two people Piotr Kaluski and myself moderator rights on the mailing list. As Ernesto wants the list to remain...
Gabor Szabo
gabor529
Offline Send Email
Oct 1, 2004
10:59 am
586
Hi, Have a look: http://www.piotrkaluski.com/automation/gui/gui_test_tut.html I am waiting for comments. The general suggestion is: * If you have comments on...
pkaluski
Offline Send Email
Oct 1, 2004
12:07 pm
587
... Very nice. You mention a couple of "problems" but don't offer directions to solve them. You might want to give simple instructions on where to get perl and...
Gabor Szabo
gabor529
Offline Send Email
Oct 2, 2004
8:10 pm
Messages 558 - 587 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