Search the web
Sign In
New User? Sign Up
perlguitest · Win32::GuiTest (Perl)
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1523 - 1552 of 1815   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1523
Hi there is no PPD file for that so better u install it mannual from the CPAN. Then Install Nmake15 from the Microsoft, and then use that module kumar21yash...
swayam panda
swayam_25
Offline Send Email
Oct 3, 2006
1:53 pm
1524
Hi, All, Can I use Perl to check the amount of memory used by certain app, like NotePad and Internet Explorer? And can I use Perl to check the amount of free...
Wallace Lai
wallace_g_lai
Offline Send Email
Oct 5, 2006
7:25 am
1525
Hi, All, Is there a way to take a screen shot of the entire monitor, or certain app, with Perl? I am using Microsoft Windows. Thank You All in Advance Wallace...
Wallace Lai
wallace_g_lai
Offline Send Email
Oct 5, 2006
7:26 am
1526
Hi, I am trying automation on an application written in Qt. I am able to use the functions like FindWindowlIke & GetWindowRect. But unable to use functions...
darshan1375
Offline Send Email
Oct 5, 2006
7:26 am
1527
Hi, All, How can I find out what functions are available in user32.dll? And, how can I find out what other useful DLLs are out there for Windows? Thank You All...
Wallace Lai
wallace_g_lai
Offline Send Email
Oct 5, 2006
7:26 am
1528
# Don't think you can do that with gui-test, unless I missed somthing in spy--. Might be overkill to use the gui-test module. Might want to stick with wmi...
evenprime
Offline Send Email
Oct 9, 2006
7:53 am
1529
How can I detect a key stroke (ala ESC) to stop a GUI-test script immediately? I'm experimenting with gui-test to automate an old windows app with no macro...
evenprime
Offline Send Email
Oct 9, 2006
7:53 am
1530
Check out the dibsect feature of the guitest module. http://search.cpan.org/~ctrondlp/Win32-GuiTest/GuiTest.pm#DibSect A simple example: $pic1 = new...
dgilbert101
Online Now Send Email
Oct 9, 2006
9:18 pm
1531
My code is my @win=FindWindowLike(0, "Agent Tool "); die "No agent tool is running, please open one.\n" if not @win; if(@win){ print "Tool is running\n" ; } my...
maryshi_us
Offline Send Email
Oct 10, 2006
10:50 pm
1532
Is FindWindowLike(0, "Update ") supposed to have a space after Update? Chris ________________________________ From: perlguitest@yahoogroups.com ...
Chris Hilton
chris_hilton
Online Now Send Email
Oct 10, 2006
10:57 pm
1533
I tried with and without space. Neither of them works. ... Update? ... popup ... @win; ... which ... @...
maryshi_us
Offline Send Email
Oct 11, 2006
8:13 am
1534
I don't find any issues with your code, same peace of code works for me with different window title. my @win=FindWindowLike(0, "Open Perl IDE*"); die "No agent...
Santosh Kumar
santoshkadli
Offline Send Email
Oct 11, 2006
9:15 am
1535
1. if you do have the window of "Agent Tool", is the popup window a child of it? if so, pass the $win[0] to that call to isolate it. 2. is the popup window a...
stuart arnold
sarnold_688
Offline Send Email
Oct 12, 2006
12:20 am
1536
Yep. http://search.cpan.org/~psme/Win32-Screenshot-1.20/Screenshot.pm Hi, All,...
Alex Morozov
inductor1975
Offline Send Email
Oct 12, 2006
6:54 am
1537
Hi, evenprime, Thanks. This is great help. Thanks Wallace ... __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail...
Wallace Lai
wallace_g_lai
Offline Send Email
Oct 12, 2006
6:55 am
1538
Hi Wallace, Well i guess u cud use the {PRTSCR} available with the SendKeys function.. Then invoke mspaint or whatever and copy it over.. Check this out:...
Shailesh Hegde
shail_hegde
Offline Send Email
Oct 12, 2006
6:55 am
1539
Hi, dgilbert101, Thanks. This is great help. I really appreciate this. Thanks Wallace ... http://search.cpan.org/~ctrondlp/Win32-GuiTest/GuiTest.pm#DibSect ...
Wallace Lai
wallace_g_lai
Offline Send Email
Oct 12, 2006
6:55 am
1540
Hi, I hope this helps. Regards, Kapil #The following API checks the following #CPU Time which is equal to KETNEL MODE + USER MODE TIME #PEAK MEMORY For details...
kapil sharma
aladdin_mill...
Offline Send Email
Oct 12, 2006
6:55 am
1541
I think FindWindowLike don't know popup window. ... me with different window title. ... for. You can specify regular expression also. ... popup window?...
maryshi_us
Offline Send Email
Oct 12, 2006
6:56 am
1542
Now I am using PushButton(). This function seems not work correctly to me. I checked example and found like "^Save","&OK",or "Yes" and I don't understand. So,...
maryshi_us
Offline Send Email
Oct 12, 2006
6:56 am
1543
Please post only Win32::GuiTest questions to this list, not general Perl questions. Wallace Lai <wallace_g_lai@...> wrote:...
Martin McGrath
funny_face_m...
Offline Send Email
Oct 12, 2006
6:57 am
1544
Hi, im trying to click on a button called Go. i could able do this with the following code... use Win32::GuiTest qw ( :ALL); use warnings; use strict; system...
kumar21yash
Offline Send Email
Oct 12, 2006
6:57 am
1545
Thanks! ... child of ... etc.. ? They ... example, ... since its ... [mailto:perlguitest@yahoogroups.com] On ... window?...
maryshi_us
Offline Send Email
Oct 12, 2006
6:57 am
1546
I open notepad and write some text, then I use the following code to test use Win32::GuiTest qw(:ALL); my @win=FindWindowLike(0, "Notepad"); die "no notepad"...
maryshi_us
Offline Send Email
Oct 12, 2006
7:02 am
1547
This happens to me often in my test scripts. It usually is because my script gets ahead of the application. It's a matter of timing. Try inserting a sleep...
Tim Mitchell
tmaxquig
Offline Send Email
Oct 12, 2006
7:03 am
1548
In PushButton function, "^Cancel" -> Button name "Cancel" starting with with "C". "&Cancel" -> Button name "Cancel", "&Cancel" happens to be in case if...
Santosh Kumar
santoshkadli
Offline Send Email
Oct 12, 2006
7:26 am
1549
Hi, It is all about being in the foreground. PushButton presses button in a window, which is in a foreground (is active and has input focus). In your example...
Piotr Kaluski
pkaluski
Offline Send Email
Oct 12, 2006
7:26 am
1550
check out "ScriptomaticV2.hta" from microsoft. its free and does a lot of object manipulation "per object" in perl, and other languages. modifiable as well. ...
stuart arnold
sarnold_688
Offline Send Email
Oct 12, 2006
7:27 am
1551
I test your code, It's succeed to close notepad. Maybe your module version is not 1.50.5. ... to test...
baiyang1
Offline Send Email
Oct 12, 2006
8:24 am
1552
Take a screen shot and paste it in the mspaint. Point the Button or anything using mouse and find the co ordinates in the progress bar....... But we need to...
kumar21yash
Offline Send Email
Oct 13, 2006
7:54 am
Messages 1523 - 1552 of 1815   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help