Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

perlguitest · Win32::GuiTest (Perl)

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 2446
  • Category: Perl
  • Founded: Jul 25, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 1506 - 1535 of 1818   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1506 andreydb Send Email Sep 12, 2006
9:45 am
Hi. How I can get current selection from combobox? Thank you....
1507 swanand111 Send Email Sep 13, 2006
11:15 am
problem is as follows My application is built in Java.. I am able capture Mainwindow Test Execution selection.. with winspy.. but that window contains many...
1508 kpqt01 Send Email Sep 14, 2006
3:53 am
Hello guys, Could someone please show me which is the best way to accomplish this task? -> "Feed the handle it returns into TVM_GETITEMRECT, and you should be...
1509 Ayyappan Ramasamy
ipan_dgl Send Email
Sep 14, 2006
9:03 am
Hi everyone, Just i am trying to install GuiTest, in my machine. But when namke is done, build is telling "cl is not supproted command". Please let me know how...
1510 Shanmuhanathan T
shanmuha Send Email
Sep 14, 2006
10:03 am
Hi, You have to have MS VC++ installed. It is easier to use activestate&#39;s perl and use the ppm file provided with the perl gui test module. Regards, Shanmu. ...
1511 brentje Send Email Sep 14, 2006
1:44 pm
Ok...that's a good question, since it took me a while to figure out what that "the prc parameter contains the handle of the item that the rectangle is being...
1512 Amit Dixit
adixit76 Send Email
Sep 21, 2006
5:24 am
Hi everyone, Can some one explain me about sendmessage API and how can I use it in Perl? Thanks, Amit Dixit...
1513 adixit76 Send Email Sep 22, 2006
6:33 am
Hi, I am not able to run my perl script which has GUI based functionality on remote machine. I tried 2 ways 1. Using SOAP 2. Using Telnet Is there anyway we...
1514 lsgtester Send Email Sep 26, 2006
8:07 pm
Hi. I am just getting started in automated testing and Perl, so this module is very helpful. The first problem I am having is that the program I am testing...
1515 kpqt01 Send Email Sep 27, 2006
4:07 am
Hi everyone, I am running accross some control provided by a third party library. I have their .dll file and its documents. I am wondering if there are ways...
1516 paramsan1234 Send Email Sep 27, 2006
4:16 am
... How about going through this post? http://tech.groups.yahoo.com/group/perlguitest/message/1499 If the link does not works for some reason, search for...
1517 vidhut singh
vidhut_ait2002 Send Email
Sep 27, 2006
5:28 am
Hi All , I am not able to capture the yahoo messenger conversation text in perl . i hve tried WM_GetText,SendMessage n all bt it didn't work.Is ther ny body...
1518 kumar21yash Send Email Sep 27, 2006
7:33 am
Hi all, i have been trying to install wingui module......using ppm the following error is resulted ... Error installing package 'D:\Win32-GuiTest.ppd': Could...
1519 kapil sharma
aladdin_mill... Send Email
Sep 27, 2006
8:47 am
Hi, # Instructions to install the package required. # ################################################################# # To run the win Gui script follow the...
1520 stuart arnold
sarnold_688 Send Email
Sep 27, 2006
9:59 am
see module Win32::API. an example to calling windows USER32.DLL for IsWindowDisabled() is my $IsWindowEnabled = new Win32::API(&#39;user32&#39;, 'IsWindowEnabled', ...
1521 kpqt01 Send Email Sep 27, 2006
3:48 pm
COOL.... Thank you thank you ... [mailto:perlguitest@yahoogroups.com] On...
1522 lsgtester Send Email Oct 1, 2006
12:45 am
I was playing around with an Application we have, and I was using the menu commands in Win32:GuiTest 1.50.5. I am new at all this so I could be mistaken, but...
1523 swayam panda
swayam_25 Send Email
Oct 3, 2006
1:53 pm
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...
1524 Wallace Lai
wallace_g_lai Send Email
Oct 5, 2006
7:25 am
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...
1525 Wallace Lai
wallace_g_lai Send Email
Oct 5, 2006
7:26 am
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...
1526 darshan1375 Send Email Oct 5, 2006
7:26 am
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...
1527 Wallace Lai
wallace_g_lai Send Email
Oct 5, 2006
7:26 am
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...
1528 evenprime Send Email Oct 9, 2006
7:53 am
# 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...
1529 evenprime Send Email Oct 9, 2006
7:53 am
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...
1530 dgilbert101 Send Email Oct 9, 2006
9:18 pm
Check out the dibsect feature of the guitest module. http://search.cpan.org/~ctrondlp/Win32-GuiTest/GuiTest.pm#DibSect A simple example: $pic1 = new...
1531 maryshi_us Send Email Oct 10, 2006
10:50 pm
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...
1532 Chris Hilton
chris_hilton Send Email
Oct 10, 2006
10:57 pm
Is FindWindowLike(0, "Update ") supposed to have a space after Update? Chris ________________________________ From: perlguitest@yahoogroups.com ...
1533 maryshi_us Send Email Oct 11, 2006
8:13 am
I tried with and without space. Neither of them works. ... Update? ... popup ... @win; ... which ... @...
1534 Santosh Kumar
santoshkadli Send Email
Oct 11, 2006
9:15 am
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...
1535 stuart arnold
sarnold_688 Send Email
Oct 12, 2006
12:20 am
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...
Messages 1506 - 1535 of 1818   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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