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...
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...
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...
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...
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...
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...
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...
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...
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...
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,...
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...
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...
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...
You might try the following for ctrl + left click: SendRawKey(VK_LCONTROL); SendMouse("{LEFTCLICK}"); SendRawKey(VK_LCONTROL, KEYEVENTF_KEYUP); The latest...
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 {...
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: ...
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...
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...
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 ...
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...
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...
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...
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...
... 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...