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: 2444
  • 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 498 - 527 of 1818   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
498 Eric
eric_hansen85 Send Email
Jun 15, 2004
1:53 pm
My experience using GuiTest with Microsoft Outlook is that the user can touch their mouse or keyboard during execution of the GuiTest script causing the...
499 Dennis K. Paulsen
ctrondlpaulsden Send Email
Jun 17, 2004
4:30 am
This will more than likely require development effort to add into Win32::GuiTest. If anyone would like to contribute, great. Regards, D ... user ... script. ...
500 Stuart Arnold
sarnold_688 Send Email
Jun 17, 2004
10:31 am
Just a thought, but its one I've done on an app that I run: disable the main window. That is, I start the process, get the app's main window id, and disable ...
501 kevinket Send Email Jun 17, 2004
11:38 am
In case you haven't figured this out yet. The system command waits for the child process to complete, some once notepad is called, it won't return control back...
502 kevinket Send Email Jun 17, 2004
11:38 am
If your goal is to just download a file from a web site, try looking at the perl LWP (light weight protocal) module. It's included in the newer versions of...
503 bullitt133 Send Email Jun 24, 2004
9:37 am
I am in the process of automating the installation of a game and during the video setup portion it the game is minimized and a web page is opened. This...
504 obvtech Send Email Jun 24, 2004
9:37 am
Here's the entire code. The example I sent earlier must have been too vague. #!/usr/bin/perl use strict; use warnings; use Win32::GuiTest qw/:ALL/; use DBI; ##...
505 Chris Hilton
chris_hilton Send Email
Jun 24, 2004
4:05 pm
Assuming you can get a handle to the window using FindWindowLike() or similar, you should be able to use the Win32::GuiTest ShowWindow() function. Something...
506 Chris Hilton
chris_hilton Send Email
Jun 24, 2004
4:21 pm
Since the total window is probably the only window with Edit class, you could insert something like: ($totalWin) = FindWindowLike($win, undef, "Edit", undef); ...
507 Gabor Szabo
gabor529 Send Email
Jun 25, 2004
11:20 am
I wonder if Win32::GuiTest can be used to test an application written in Java ? Using the mouse only to click would probably work but I tried and could not get...
508 obvtech Send Email Jun 25, 2004
11:20 am
I finally got it working on my system at home. The one problem I see with the way I was able to pull the information, is it's obviously different depending on...
509 obvtech Send Email Jun 25, 2004
11:20 am
Thanks Chris, I've tried method one and recieved this error on execution: Use of uninitialized value in subroutine entry at calc.pl line 35. I'll try the...
510 Chris Hilton
chris_hilton Send Email
Jun 25, 2004
5:19 pm
One recommendation: ($totalWin) = FindWindowLike(undef, undef, "Edit", undef, undef); Since you've passed undef as the first parameter to FindWindowLike(),...
511 Kristofer Hoch
kristoferhoch Send Email
Jun 28, 2004
2:13 am
Gabor, The short answer is no. The reason is because applications written in Java are abstracted away from the host operating system. They run in the...
512 David Herron
reikiman Send Email
Jun 29, 2004
11:36 am
Can you point me to what this MSAA API is? Is it the Accessibility support? Java components have excellent support for being queried from an Accessibility...
513 hlampert@...
hlampert Send Email
Jun 29, 2004
11:36 am
Hello, I'm new to this forum. I'm using GUITest to control an VB based application. One of the screens has several listboxes. I have had some success in...
514 Steven Swenson
talwyn Send Email
Jun 29, 2004
11:36 am
Hmm, could a java api be integrated invisibly into win32-gui test? ... Gabor, The short answer is no. The reason is because applications written in Java are...
515 dkdgr103 Send Email Jun 30, 2004
9:34 am
I'm looking at a way to find the labels from a form. I have been looking at WMGetText but have not found a way to make it working. Regards, Daniel...
516 pkaluski Send Email Jun 30, 2004
9:34 am
... list ... controls ... several ... as ... actually ... Hi Gabor, Thanks for your response. To answer your questions: 1. Can't you access this control by...
517 kiruba nidhi
kiruba_pec Send Email
Jul 7, 2004
8:31 am
Hi, I am a new user to the Win32 gui perl module. In my project i am using a Window which contains three tab.Each tab has respective text fields. I want to...
518 Dennis K. Paulsen
ctrondlpaulsden Send Email
Jul 15, 2004
9:53 am
Take a look at FindWindowLike and WMGetText in the README, you'll want to use both in that order, to find the window handle to the label and then read its...
519 chris.johnson@...
coastguard12 Send Email
Jul 17, 2004
2:24 pm
Is there a way thru perl to determine the number of processors running on a machine Thanks, Chris [Non-text portions of this message have been removed]...
520 Yoni ben-shlosh
yoni_benshlosh Send Email
Jul 17, 2004
2:24 pm
Hey, i wanted to know if anyone knows of a way to automate TN3270 and/or Tandem telnets (Tandem is something like a mainframe). i thought about using...
521 Gabor Szabo
gabor529 Send Email
Jul 17, 2004
3:04 pm
I fixed most of the issues that I raised in my previous message. The latest version of the spy.pl script I started to write can be found in the CVS here: (with...
522 kirby_laurence Send Email Jul 17, 2004
3:04 pm
My most desired function. It wasn't there when I first looked into Guitest about a year ago. Even an ugly workaround or alternate tools suggestions would be...
523 Gabor Szabo
gabor529 Send Email
Jul 17, 2004
3:05 pm
I am using the .NET SDK that is free to download from the web site of Microsoft. I get the following error. ================================================== ...
524 Gabor Szabo
gabor529 Send Email
Jul 17, 2004
3:06 pm
Based on the spy--.pl in the eg directory of the distributions I started to write a bit more roboust spy program that later on I'll check in the repository. I...
525 Eyeless Devil
gothposer Send Email
Jul 17, 2004
3:06 pm
... When I tried this, a 2nd dialogue came up without executing the app. After looking at the help for START, I noticed that the first param is a title string....
526 Gabor Szabo
gabor529 Send Email
Jul 18, 2004
1:51 pm
I am going over the examples in the eg directory of the distribution and encountered a couple of things that are not working on my XP. I'd like to fix them but...
527 coolrobd Send Email Jul 19, 2004
12:38 pm
Let me start by explaining what I am trying to achieve. Basically the Quake engine has a console window that sits behind it, I believe this to be a child...
Messages 498 - 527 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