Hi all. Just want to share my "experience" in finding controls on forms. Usually it`s a boring task, especially when controls has no titles. You have to ...
1289
Ambat, Gopakumar (STSD)
wastebugger
Feb 3, 2006 1:02 pm
Hi, I have a MFC based app for which I plan to do some test automation. My app uses Perl internally (links perl58.dll and uses a bunch of XS interfaces), so I...
1290
Piotr Kaluski
pkaluski
Feb 3, 2006 1:07 pm
GUI automation operates on standard window controls - edit boxes, combos and so on. It does not care what is the language of the application, which hosts them....
1291
Agnishwar Karmakar
agni_karmakar
Feb 3, 2006 2:58 pm
Hi, I am new to perl Win32 GUI test. It will be of great help if some one provide me some pointer on this. I am using GUI test to automate test cases for an...
1292
Dave Miller
drm_wa
Feb 6, 2006 9:09 pm
Looking through the archives, I found one thread about this, but it died out before a solution came up, so I'm going to try fresh. I'm trying to send...
1293
Piotr Kaluski
pkaluski
Feb 7, 2006 8:46 pm
Ok. I think I know the answer to your question. I am not sure that I am right but my experiments and Petzold seem to confirm it. I will give you an elaborate...
1294
santoshkadli
Feb 13, 2006 11:33 am
I am trying to set the RadioButton using CheckButton($ChkBoxHdl), I am able to get the Radio button status by, -- my $ChkBoxHdl = FindWindowLike(0,...
1295
ep_perl
Feb 19, 2006 11:44 am
Hi, I need help reading the text from a display window. The application was created with MFC. There is a child window called LCD. This child window, LCD,...
1296
Tim Mitchell
tmaxquig
Feb 19, 2006 11:50 am
Hi everyone, I have just recently installed Win32-GuiTest on my computer at work. I plan to use Perl and Win32-GuiTest as the basis for running scripts to ...
1297
Piotr Kaluski
pkaluski
Feb 19, 2006 11:59 am
Hi, Posting policy has never been explicitly formulated here, so I thought that maybe some basic guidelines should be given. 1. Before you post please check...
1298
Piotr Kaluski
pkaluski
Feb 19, 2006 12:04 pm
You are right, it is not there. Win32::GuiTest does not have a full coverage of all operations for all common controls. So you may find more missing...
1299
V. Ramamurthy
vrama1970
Feb 23, 2006 1:04 pm
Hi Is there any inbuild function in Win32:guitest for read the data in excel/word or i should use Win32:OLE Thanks Ram ... Jiyo cricket on Yahoo! India cricket...
1300
brentje
Feb 23, 2006 4:30 pm
Yup...that39;s something that I discovered after I started using GuiTest. Not hard to do in yor script if you have the listbox's handle, but it would be nice to...
1301
Timothy Mitchell
tmaxquig
Feb 23, 2006 5:34 pm
Thanks for the reply. I did it like this, putting the subroutines in a seperate module for reuse. "Select item" is the title of a test dialog that has...
1302
Sachin Tiwari
sach_tiw
Mar 3, 2006 9:57 am
Hi, I have an application that at times gets very slow. Say while refreshing, the cursor gets into the hourglass state and comes back to normal position after...
1303
Alex Morozov
inductor1975
Mar 3, 2006 10:13 am
Maybe, this article will help you: http://msdn.microsoft.com/msdnmag/issues/01/10/Cursor/default.aspx...
1304
hameed_shaahul
Mar 9, 2006 8:07 am
Hi I tried to install Win32-GuiTest-1.50.3-ad downloaded from http://search.cpan.org/dist/Win32-GuiTest/ <http://search.cpan.org/dist/Win32-GuiTest/> . These...
1305
Alex Morozov
inductor1975
Mar 9, 2006 8:38 am
It seems you have to install Test::More package. Which Perl distributive are you using? ... [skip]...
1306
Piotr Kaluski
pkaluski
Mar 9, 2006 9:04 am
Also please take the most recent version from winguitest project on soruceforge. --Piotr ... distributive...
1307
Steve Loughran
stevelml1@...
Mar 13, 2006 9:55 pm
Hi all Been banging my head against this for the last 2-3 hours, and its driving me nuts. ActivePerl 5.8.6.<something> Win32 Gui Test v1.50.5 (install from ppd...
1308
Alex Morozov
inductor1975
Mar 14, 2006 7:55 am
Can you provide your sample code?...
1309
naveen antony
neevanantony
Mar 14, 2006 10:25 am
Hi all, I want to automate Mozilla Firefox. Could somebody suggest any package that can be used for this. Tried to install mozilla-mechanize but it asks for...
1310
Gabor Szabo
gabor529
Mar 14, 2006 11:48 am
I let this message in but I actualy think you should look a bit more closely where to look for help. This mailing list is about Win32::GUITest and not Mozilla...
1311
Steve Loughran
stevelml1@...
Mar 14, 2006 3:54 pm
oops... I had a brain meltdown, its all working and doing what it should be doing now. Sorry to take up your time... Steve (I never make the same mistakes...
1312
finite_sf
Mar 24, 2006 11:56 am
If anyone has a moment could you please post a example of using the following functions: GetTabItems SelectTabItem Using some generic default windows app. Such...
1313
Dennis K. Paulsen
ctrondlpaulsden
Mar 27, 2006 3:02 am
Hi, Yes, example below. Script assumes System Properties is already running: #!/usr/bin/perl use Win32::GuiTest qw(:ALL); my ($w) = FindWindowLike(0, "System...
1314
Dennis K. Paulsen
ctrondlpaulsden
Mar 27, 2006 3:08 am
In your Win32::GuiTest import line (use Win32::GuiTest qw(...)), make sure your including SendRawKey and the appropriate tag (:ALL, etc.) to import the...
1315
Tim Mitchell
tmaxquig
Mar 31, 2006 3:22 pm
He guys, TVM_GETITEMRECT requires the handle of the item in the tree that you want to find the coordinates of. Winspy doesn't show any child windows belonging...
1316
brentje
Mar 31, 2006 8:40 pm
I've been looking into similar things regarding TreeView. Haven't written code for it yet, but the info it out there. The MSDN, while a little confusing at...
1317
alexnzus
Apr 3, 2006 6:55 am
Hi all, I have just started using Win32::GuiTest, and would appreciate it if you could refer me to some examples. I am aware of those on ...