Hi I'm having some trouble with the GetPopupHandle function. It never seems to bring back a handle. It always returns 0. After looking into the .XS file, I...
Perl functions, by default, return the last variable computed. I haven't tried the GetPopupHandle function, but I often have to add a "sleep" to give windows...
Hi Sundar, Have you heard of something called google. Go to google.com and search for "Learning perl" Sam nancy sherwood <kidofsherlock@...> wrote: try...
Has anyone else had this problem? Try this function. $Title is the string title of a window with the button to test. $ButtonToCheck is the string caption on...
Hello, If this is a regular button, it is either enabled or disabled, see IsWindowEnabled. IsGrayedButtton is for radio buttons or checkboxes, per Microsoft...
Thanks Dennis, I think you are right. I was using http://www.piotrkaluski.com/files/winguitest/docs/index.html as a guide to the GuiTest functions. Maybe Pior...
Piotr, Thanks for clearing that up. The new note on the documentation helps. I guess I don't understand what an "indeterminant" state is. Can't we always...
Best example is probably a folder's property for the 'Read Only' in explorer. If the files in the folder are read-only and some are full access, the checkbox...
Hi, To solve a problem we have with a third party application for automating Microsoft office tasks I quickly wiped up a Perl script using Win32::GuiTest,...
Hi All, I'm trying to automate a Application on Windows Vista OS using PERL, It would be great if you can send me the link the useful documents to write the...
Girish
girishwill@...
Jun 5, 2006 4:42 am
1378
In Windows no window can be active when the screen is locked (a security mechanism). So, you have no target to sendkeys to when you have a locked screen....
Just to be really preemptive.... If you want to change autologin properties from Perl use Win32::TieRegistry. use Win32::TieRegistry ( TiedHash=>\%reg, ...
Hi Girish, You can use the "autoit" library for Windows GUI. You can use the DLL given by this library and import it in PERL. This is freely available on net. ...
Hello, I'm having trouble using SendMessage to get the rectangle coordinates of an item using LB_GETITEMRECT. my $member = "ABC"; # Use LB_FINDSTRINGEXACT...
OK, I got it, thanks to Brentje's post #1273. The key seems to be defining $ptr with: $ptr = pack( "LLLL", 0,0,0,0); and then packing it again with: pack('P',...
Hi all, Is there any module to automate "HTML pages created with the help of Java script". I just checked with Win32::SAM module, the module couldn't recognize...
... AFAIK there is no stand alone solution to this issue and even if there was the Javascript engine in such soultion would be different from the one in...
This depends what you are trying to do. Your question is not clear on this. Automate "HTML pages created with the help of JavaScript"? If by this you mean test...
Hi. It seems you can`t do that directly. Here`s the explanation: http://search.cpan.org/dist/WWW-Mechanize/lib/WWW/Mechanize/FAQ.pod Well, you can pass urls...
... You should look at Selenium and it's Perl controller: http://search.cpan.org/~lukec/Test-WWW-Selenium/lib/WWW/Selenium.pm http://www.openqa.org/selenium/ ...
Has anybody found a solution to this without using SendRawKey? SendKeys("+({DOWN 100})"); and{PGDN} jam the shift as well, without actually highlighting....
Hi, Is there any way to access menus? What is want to automate is to open the explorer window and Map a drive using the Map network drive wizard. I'm able to...
I have seen/heard rumors that some SendKeys functionality will be changed/removed in Windows Vista. Curious if anyone has used Win32::GuiTest with Windows...
Dear All, I have an application of class type "javax.swing.JFrame" and it has two buttons "Next" and "Cancel". I am able to find the parent window. The problem...