Hi, I'm new to this forum. Havent yet downloaded the tester yet, and wanted to find out the limitations of any. for eg., how do i script mouse click on a...
Thanks, but I'm afraid it doesnt. The app I'm testing is a simple VB application which uses frames. Replacing the app with notepad, I was able to watch the...
A couple of thoughts on this: * Your application may be taking more then 3 seconds to load up, display applicable windows, and become ready for keyboard input,...
I'm not familiar with that window class. Is it a standard one or are you using a third party grid control? Without more details I can only guess that there...
A mouse click could be done, but one can also just use the following to "click" on a Cancel button: PushButton("Cancel"); P.S. If you download Win32-GUITest,...
What is the difference if it is standad or not ? What can I say is that this GXWND control is included in Clarify client. That's all. Regards. ... From: Dennis...
Thanks a bunch. Wonderful information. After a few debug tricks I just realised that the problem lies elsewhere. Once my Powersafe App loads, it's like the app...
Hi, I tried to run the notepad_text.pl script from egs., but I get a compile error on gettext. I figured it had something to do with user32.lib. Do I need to...
Do not know how or why, since the code is still the same, but the script works for me now. Thanks. ... so ... seconds ... search ... <shsk7203@y...> ... cant ...
One other observation... When you call PSActions, you aren't use the Windows start command, so the system() call will wait for PSActions to exit before it...
Hi all, I've seen postings and stuff on the net regarding WaitWindow(). It says its in win32::guitest, but I see references to an X11:guitest when i search. ...
Based on your question, it seems you could use WaitWindow. If your message box or dialog box includes the result (Success/Fail) in its caption you can do...
Hello, After I got an error on trying to run the notepad_text.pl, I tried a no. of other commands like SetFocus, GetText etc, all of which gave me errors on...
A couple of thoughts: Make sure Win32::GuiTest is installed properly. Message #239 located at http://groups.yahoo.com/group/perlguitest/message/239 may be of ...
Hi I have a Win32 based application developed using Developer 2000 Forms I would like to automate the testing process using Perl win32 guitest In some forms ,I...
Thanks Dennis, I had checked for installation of guitest.pm, and found that it was installed (ie the file was in the perl's lib) after I ran the install via...
There is a showmousemove.pl eg povided with the GuiTest package which you can use on your application to find the co-ordinates. -skanitkar ... Forms ... ...
hi Thanks for your suggestion. I couldn't find this file Can you pls send it across Manohar shsk7203 <shsk7203@...> wrote: There is a showmousemove.pl eg...
Get the window handle for the button, then call GetWindowRect on the window handle. You can calculate the coordinate you want to click on (somewhere in that...
Hi, I want to check for invalid values in a textbox control. On entering invalid values, a warning dialog pops up. Is there somw way in which I can extract the...
Hi, I was wondering how I can elegantly code it such that I can use WMGetText on a particular input Text box in the current Active window. Currently, I used...
If the VB application is coded elegantly, each of the text boxes would have a meaningfull caption/name assigned to them; which could then be read and used to...
Hi folks, Please ignore my earlier two emails regarding getting text from particular text box and warning Text from a dialog box. I found the Control Id of my...
Found my solution: Winspy utility at http://www.catch22.org.uk/software/ gives me the control id of the warning Text. Foll code returns the warning text: ...
Found my solution: Winspy utility at http://www.catch22.org.uk/software/ gives me the control id of the Text box. Foll code returns the warning text: #using...