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. ...
Sandy, This question doesn't really belong here. What you need to to use a newer version of Perl (5.8.2 is out) and Win32::OLE. Try searching the PerlMonks...
Does anybody know any tutorial (online or book) for win32::guitest which provides all information such as functions from guitest, their definations, examples...
Thanks, problem was that I should be using winodow handle (get using FindWindowlike()) and not the text of window name. I figured necessity of using sleep, but...
Hello, The most common scenario is to allow time for the application (GUI) to become ready for interaction/user input. Without a WaitWindow or sleep in the...
At this time, the only "documentation" that I am aware of for Win32::GuiTest is what comes with the README (perldoc Win32::GuiTest) and the example scripts....