Yes, the MenuSelect function and its documentation (README.html) is available in Win32-GUITest v1.49 or greater(v1.49.2), however these builds are considered...
Hello folks, silly question but one I'm stuck on. I'm using: use Win32::GuiTest qw/SendKeys/; SendKeys("(^%{DELETE})"); To atempt to send a ctrl-alt-del to a...
HI , I have a requirement , i need to test for the broken link within my web application, can this be done using perl. If this can be automated using perl...
Rajeev J
jrajeev@...
May 6, 2003 5:59 am
205
I have a web page which has 2 huge text fields in that , what i am trying to do in perl is copy the content in these edit fields and paste it into a different...
Rajeev J
jrajeev@...
May 9, 2003 3:47 am
206
Hi, I think you're right in that you cannot send the CTRL+ALT+DEL sequence from a program. Probably a feature they designed in for security reasons? If you...
Hello, First, make sure you are using SendMouse and not SendKeys to do this.. And try using the following statement: SendMouse("{LEFTCLICK}{LEFTCLICK}"); ...
Hello, You could use SendKeys("{TAB}") to switch focus between the two text fields. Also, Win32::Clipboard may work okay for retrieving the text back from the...
Sorry, I'm not aware of a readily available version of Win32::GuiTest that includes this functionality. One thing to note about this functionality is that...
ugh, never mind. my bad, its working fine. used the wrong command. use Win32::GuiTest qw(SendKeys SendMouse); SendMouse("{LEFTCLICK}{LEFTCLICK}"); print ("Sent...
Has anyone tried to send in mouse wheel up and down movements? There doesn't seem to be a function for it. Thanks! __________________________________ Do you...
It seems that SendMouseMove is multiplying everything by 3 (with Perl 5.6.8 and Windows XP). #!/usr/bin/perl use Win32::GuiTest qw(:ALL); SendMouseMoveAbs(0,...
It seems that SendMouseMove is multiplying everything by 3 (with Perl 5.8.0 and Windows XP). #!/usr/bin/perl use Win32::GuiTest qw(:ALL); SendMouseMoveAbs(0,...
I am new at this so please bear with me. I am trying to fill in a text box in one application (Remedy) with data from a Perl script. I am having trouble...
Anybody else having a problem with MenuSelect? I'm using "Win32-GuiTest-1.49.2". For me it works fine on SDI applications such as Notepad and on MDI ...
Hi, i have a Java Applet window,i wouild like to send Non-Ascii (For Ex: using the keyboard sequence Alt+0181) characters from it using the SendKeys function. ...
Hello, The textbox control you seek could be hiding underneath several child windows... So, what follows is a link to a free tool to help in identifying...
Hi, Upon experimenting with this on a simple MFC AppWizard generated MDI application (with child maximized), I also witnessed the crash... By adding the...
Hi, I don't recall ever using SendMouseMoveRel, but I do believe the x/y parameters supplied to it are supposed to be in what are known as "mickeys", not pixel...
Hello, Sorry, I'm not aware of a currently available Win32::GuiTest function to do this either.. Developer Note: With a bit of work, it looks like mouse_event...
I do like the enhancements this tool provides, but when I drag the icon over the text box I need the info for, there is nothing displayed. Which is true for...
just a quick question here... ive looked around quite a bit and was unable to come up with an answer for this- most functions only operate on the currently...
I'm learning Win32::GuiTest to use as an example in my perl scripting tutorial at the Software Test Automation Conference. My first project was modifying...
I've never seen this behavior before, maybe someone else has? Otherwise, if you could provide more information on the application you are working with, maybe...
Internal to both of these functions are calls to Windows API functions; which implement functionality in the same way, i.e., they operate on the currently...
Hello, I believe WaitWindow was recently implemented, so it is possible that several of the samples haven't been updated as of yet. Here is a slight...
The application that exhibits this behavior is called "Remedy". It is a big bucks application the company uses at our call center to track orders. It does...
I've opened a window via a menu command and have sent keys ("+ {TAB}") to get to the appropriate edit field in the window. Then I use SendKeys to send data to...