Has anyone come across or used any other analogous commercial products for automating windows apps (specifically toolkits, not just Segue, etc.). Some time...
Jessica, Perhaps you could tell us a bit about your project (No-IP required), and we could give you a little more direction. Thanks, Kristofer Hoch. Quality...
I use PushButton in quite a number of my test scripts .. occasionally for some reason the button only bumps but does not depress. This has happened on the...
Sleep 1 second before clicking the button and the problem should be gone. guiguy2001 <guiguy2001@...> wrote:I use PushButton in quite a number of my test...
Probably my question is too trivial but I'm a starter. I just started to use the guitest module. I need to test a website like this messge board. Assume I want...
If your application for test is a website GuiTest may not be your best tool. GuiTest is more geared to a Win32App. You may be able to use Sendkeys and mouse...
Gennady: Thank you very much. Version 1.49 installed in ActivePerl 5.8.0 very nicely. Samie appears to still be functioning also. Now all I need to learn is...
I think I'm missing something. I don't see any way to move to a text box except for purhaps x,y, but the text boxes may be moved on the screen between testing...
Hello, Assuming you are using Win32::GuiTest on a Windows platform; I'll try and answer your question below... However, if you are instead using X11::GUITest...
Sure. $data = "What I want to send"; SendKeys($data); Chris Hilton Hi I'm relatively new to perl. Is it possible to use sendkey to send data stored in a...
Spam detection software, running on the system "mail.citat.se", has identified this incoming email as possible spam. The original message has been attached to...
Does this tool support the Record and Playback feature and Links checking? I am looking for a freeware to automate a web based application, and wondering if...
I am unable to build the latest code. Can anyone help with the following errors? ... D:\Perlcode\Downloads\Win32-GuiTest-1.50>nmake Microsoft (R) Program...
A couple of thoughts: Make sure you run 'vcvars32.bat' before you run 'perl makefile.pl' and 'nmake' to ensure the build environment is reasonably setup. One...
VCVARS32.BAT is a batch file installed with Visual C++. You should find it in the BIN subdirectory of your Visual C++ installation directory. You need to run...
Hello, I have some Tablefields (Class: ICL Container LDetail) in my application and want to read their contents at the runtime. Exists any function in Guitest,...
Hello all, I am trying to ue the AO library to get the accessible objects within a treeview 32 form created by .net using c# . I can see the object information...
Hi, I am using ActivePerl 5.6. How can I paste the content of a cell in an excel sheet to another cell in the same excel sheet using Perl. Iam a beginner. Will...
... box, ... Exactly the kick in the pants I needed to get me started in the correct direction. By the way, this is the only scripting I've come across yet ...
I am unable to build the latest code. Can anyone help with the following errors? ... D:\Perlcode\Downloads\Win32-GuiTest-1.50>nmake Microsoft (R) Program...
Hi, I am trying to use sendkeys() function call using win32::guitest for the first time in my life. When I try to run my program, i get the message that script...
Hi, Following is my script. It runs the program quake3.exe but then it does not pass key 'enter' to it. What it supposed to do is when it enters it will play...
Hi I am a beginner in Perl. I need to copy the contents of one excel cell into another cell using Active Perl 5.6. Can anyone please helpout. Thanks Sandy...
Should look something like this: use Win32::GuiTest chdir("C:\\Program\ Files\\Quake\ III\ Arena"); system("quake3.exe"); SetForegroundWindow("Quake 3:...
Hello, One other thing you might need; which is utilized throughout Win32::GuiTest's example scripts, is the use of start.exe (example below). Without this,...
Hello, Instead of Win32::GuiTest, you may want to investigate a different solution, such as the Spreadsheet::WriteExcel/Spreadsheet::ParseExcel Perl modules. ...