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...
Show off your group to the world. Share a photo of your group with us.

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 1415 - 1444 of 1815   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1415
Hello Guys, I need help regarding data-driven testing with PERL. My question is how can i attach e.g. excel file to execute data driven test if i use ...
Zaigham Humayun
zee_humayun
Offline Send Email
Jul 3, 2006
10:23 pm
1416
Hello guys, I've used Win32::GuiTest for Windows Applications and have loved it.However, I am now looking for something that'll help me use the functions...
shailesh
shail_hegde
Offline Send Email
Jul 5, 2006
10:50 am
1417
Shailesh, If you are interested in perl for your web application testing, you could alwayz go for modules like LWP::UserAgent; Win32::SAM, Win32::OLE , etc. If...
Ramya Ramalinga, Moor...
prramya
Offline Send Email
Jul 5, 2006
12:04 pm
1418
Simple...read the data in from the excel file (google for this, here's one example: http://www-128.ibm.com/developerworks/library/l-pexcel/). Then take data...
brentje
Offline Send Email
Jul 5, 2006
1:46 pm
1419
try looking into, http://search.cpan.org/~lukec/Test-WWW-Selenium/lib/WWW/Selenium.pm http://www.openqa.org/selenium/ This should help you to some extent. ...
Santosh Kumar
santoshkadli
Offline Send Email
Jul 5, 2006
1:52 pm
1420
IHi All, 'm trying to execute the below command, bit it fails ..... Please any one correct my command i.e. i'm confused with the "hwnd" argument, tell me what ...
Girish
girishwill@...
Send Email
Jul 5, 2006
1:58 pm
1421
Girish, Window handle happens to be a variable number & cannot be obtained by looking at the screen shots. If you have a constant window title, you can try...
Santosh Kumar
santoshkadli
Offline Send Email
Jul 6, 2006
5:44 am
1422
Hi Santhosh, I tried below .... #####Get the Handle of window "Profiles"######### my @whnds = FindWindowLike(0,'Profiles',""); sleep(1); #####Get the child...
Girish
girishwill@...
Send Email
Jul 6, 2006
12:32 pm
1423
Hi Santosh, I installed the Selenium server succesfully. Am able to open web pages, etc using its commands. I am now using a Perl Module called WWW::Selenium...
shailesh
shail_hegde
Offline Send Email
Jul 7, 2006
9:02 am
1424
Hello, I'm trying to use Piotr's example 2.6 in "Chapter 2. GUI testing - tutorial" to find the handle of an item in a TreeView using SendMessage with...
Tim Mitchell
tmaxquig
Offline Send Email
Jul 10, 2006
7:16 pm
1425
Bug to report... SelTreeViewItemPath gets stuck in endless loop if the item you are trying to select doesn't exist on the tree. This function needs to return a...
Tim Mitchell
tmaxquig
Offline Send Email
Jul 11, 2006
2:35 pm
1426
Hello Friends, Below functions are not working for any of the list boxes in our application under test SelListViewItem( $hwnd, $idx ); GetListViewContents(...
Girish
girishwill@...
Send Email
Jul 13, 2006
6:44 am
1427
Can you create a bug report in source forge? Please provide a description how to reproduce this bug quickly --Piotr...
Piotr Kaluski
pkaluski
Offline Send Email
Jul 13, 2006
6:45 am
1428
Hello Friends, Below functions are not working for any of the list boxes in our application under test SelListViewItem( $hwnd, $idx ); GetListViewContents(...
Girish
girishwill@...
Send Email
Jul 13, 2006
6:51 am
1429
Hi, GetListContents works with ListBoxes, not with ListViews. All remaining functions you listed should work with syslistview32 (i.e. ListViews). I would...
Piotr Kaluski
pkaluski
Offline Send Email
Jul 13, 2006
7:11 am
1430
I will gladly report this in source forge when I am able to duplicate it in an application that others can run. I tried to reproduce the bug with this script...
Tim Mitchell
tmaxquig
Offline Send Email
Jul 14, 2006
8:34 pm
1431
Hi All, I have below two Edit fields belonging to Class Name: "Edit" 1:Password: 2:Confirm Password: I'm passing the the password using the function...
Girish
girishwill@...
Send Email
Jul 14, 2006
8:35 pm
1432
Hi, I have used these perl modules in the past which help automating Web App. http://search.cpan.org/~petdance/WWW-Mechanize-1.18/lib/WWW/Mechanize.pm ...
raghu_kumar_78
Offline Send Email
Jul 15, 2006
9:31 pm
1433
Hai Al, I need to verify an IP Address: below is my test case .... If IP Address = 10.118.232.# -> Pass If IP Address = 10.118.110.# -> Fail Only first 3...
Girish
girishwill@...
Send Email
Jul 17, 2006
1:52 pm
1434
I've been having some fun with SelTreeViewItemPath lately myself, so I think I can explain why it selects the "Desktop" in your example but doesn't highlight...
brentje
Offline Send Email
Jul 17, 2006
2:30 pm
1435
... $_=$IP; if (/^(10)\.(118)\.(232)*/) { print "Valid IP ADDRESS\n"; print "1: $1 \n2: $2\n3: $3 \n"; } else { print "FAIL: Invalid IP Address $IP \n"; ...
op_boot
Offline Send Email
Jul 17, 2006
3:45 pm
1436
Thanks Brent, OK, I added "Desktop|" to the front of the parameter string in the call to SelTreeViewItemPath in my example. Yes, it does get stuck in a loop....
Tim Mitchell
tmaxquig
Offline Send Email
Jul 18, 2006
3:36 am
1437
op_boot: ... if ($IP eq "^(10){.}(118){.}(232)*") # if ($IP eq "^10.118.232.*") - Didn't work ... You're trying to use a string equivalence comparison (eq)...
Peter G Martin
scribepeterm
Online Now Send Email
Jul 18, 2006
3:38 am
1438
Hi Can any one tell me whether I can use perl scripts to automate Qt application. Few of the symtax like MenuSelect("&File|E&xit"); OR GetWindowText($_), ...
manisha
manishar28
Offline Send Email
Jul 20, 2006
4:25 am
1439
Hello I'm a testing engineer at Aircom International currently testing a Telecommunications Post Processing tool developed in C++. I've read the Automated GUI...
louisegilbert900
louisegilber...
Offline Send Email
Jul 25, 2006
5:15 pm
1440
Louise, Not sure weather you have read this.. http://www.piotrkaluski.com/files/winguitest/docs/index.html check it out, Its very Interesting and help full. ...
Santosh Kumar
santoshkadli
Offline Send Email
Jul 26, 2006
8:36 am
1441
Hi all, I am newbie to win32guitest.Can anybody tell me how to get the handle to a button in a window.The button has no text in it Thanks & regards Kiran Rajan...
Kiran Rajan
kiranraj20
Offline Send Email
Jul 26, 2006
10:42 am
1442
... Hi. If a button doesn`t have a text, you should determine its classname and index. I use AutoInfo from AutoIt. Then, pass the classname to the FindWindow()...
Alex Morozov
inductor1975
Offline Send Email
Jul 26, 2006
2:13 pm
1443
Kiran, If you have a Parent window handle, You can try using, @hwnds = GetChildWindows( $hwnd ); This will return all the child of the Parent window. Obviously...
Santosh Kumar
santoshkadli
Offline Send Email
Jul 26, 2006
2:15 pm
1444
Guys, I am going on vacation for 2 weeks. This list is moderated. I will try to check the internet from time to time, but if you don't see your post approved...
Piotr Kaluski
pkaluski
Offline Send Email
Jul 26, 2006
6:46 pm
Messages 1415 - 1444 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