Hi, I have an "Windows application" where there are 4 editboxes without captions. To turn the focus to any one of the edit boxes, I am not able to get the ...
Sriram - I had a similar problem with an application based on Javascript. I tried SPY++ and was able to get window handles and some class information. From...
793
pkaluski
Mar 2, 2005 6:44 am
... 20Search&Selected=1&FontSize=8.0 ... control and send a left mouse click? ... Lee, Could you please check the link provided? It does not provide any ...
794
hp189bp
Mar 2, 2005 1:41 pm
Hi, My first post to this group, I am a beginner as far as guitest goes but am hopeful that it can really help with some automated testing I have planned. ...
795
hp189bp
Mar 5, 2005 7:51 pm
Looks like this may be a .net issue. The application I am running against is a .net snap in to the mmc and it doesn't seem to work. However, I have tried a...
796
umakant patil
u4u99
Mar 8, 2005 7:59 am
Is there any way to compare bmp or jpg images in Win32::GuiTest? I want to automate installation process. So when the status bar shows 100% completed, i want...
797
Nagarajan M
naga_cit
Mar 8, 2005 8:04 am
Hi All, How can I invoke the system tray menus? For example... I went to the system tray and right click the mouse over a particular Icon. A list of menu...
798
sameer wakhlu
sameerwakhlu
Mar 8, 2005 12:07 pm
Hi I am new in perl .Actually I am testing a product for PC backup and I am planning to perform automation testing on the same becuase I have been receiving...
799
Anderson Farias
peixedragao
Mar 12, 2005 5:35 am
Hi all, I'm stuk! I've installed Win32::GuiTest with success and already have used the recorder to create a test script. However, I'm not 'knowleageble39; on...
800
peterkayatwork
Mar 12, 2005 5:35 am
... I myself don't use the code (yet), so I hardly count, but you could always put a wrapper around it, something like Win32::GuiTest::Clean (or ::Simple, or...
801
peterkayatwork
Mar 12, 2005 5:36 am
Just (finally) got to this group, in my trek through the QA and perl world, so Hello everyone! I wanted to ask how easy people think creating scripts using ...
802
Gabor Szabo
gabor529
Mar 13, 2005 10:46 am
On another web forum that I maintain someone asked a question regarding Win32::IE::Mechanize. the question was how to access the IFRAMEs in a page ...
803
Chris McMahon
chrs_mcmhn
Mar 13, 2005 8:11 pm
Hi... Bret Pettichord just published the note below to the WATIR and ruby-talk mail lists. If anyone here would be interested in helping to create a usable...
804
pkaluski
Mar 15, 2005 2:33 pm
Hi, Some time ago I mentioned that it would be good to have a test application, which would be created only for being a target for tested WGT functions. I have...
805
Yoni
yoni_benshlosh
Mar 15, 2005 3:10 pm
Hey, i want to automate a 3270 Emulator called "IBM Personal Communications". it mainly contains a certain (custom?!) Control that i dont know how to obtain...
806
liu xiaolei
guguqiaqia
Mar 18, 2005 7:06 am
hi, I use Win32::GuiTest .But some of functions in c++ or c . How about use c or c++ functions in perl ? Thanks, Liu xiaolei ...
807
Philip Zembrod
pzembrod
Mar 21, 2005 11:26 am
... I would recommend reading the perlxstut and perlxs parts of the perl core documentation. XS is a language for describing embedding of C functions into...
808
Michael Rabinovitz
rabinov
Mar 22, 2005 4:07 am
... There is a module called 'Inline39; that lets you embed C code directly into your script, and call functions written in C. Other variants of Inline let you...
809
roy_biswadip
Mar 30, 2005 7:43 am
I have started to learn the usage of Win32::GuiTest for Gui Testing. I need serious help from you guys....
810
liu xiaolei
guguqiaqia
Mar 30, 2005 7:44 am
First, thanks everyboby help for me,I write codes : use Inline C; greet('Ingy39;); greet(42); __END__ __C__ void greet(char* name) { printf("Hello %s!\n", name);...
811
liu xiaolei
guguqiaqia
Mar 30, 2005 7:44 am
hi, How about Press Ctrl key? I write a function ,please look this: # 1 start x,2 start y,3 end x,4 end y sub CtrlClickTwo { MouseMoveAbsPix($_[0],$_[1]); ...
812
Chris Hilton
chris_hilton
Mar 30, 2005 3:40 pm
You probably haven't installed the Inline module. Try 'ppm install Inline' at a command prompt. Chris Hilton ... From: liu xiaolei...
813
liu xiaolei
guguqiaqia
Mar 31, 2005 7:45 am
Thanks a lot ,i installed Inline successful at PPM. But when i write follow this code: use Inline C; greet('Ingy39;); greet(42); __END__ __C__ void greet(char*...
814
xue.yaoshun@...
xueyaoshun
Mar 31, 2005 7:46 am
If you get the inline.ppm installed, that's will be ok. I propose that you should read the manual carefully, and will find the correct answer. liu xiaolei...
815
wenjie wang
wiseagent2000
Apr 4, 2005 7:17 am
I'm having problem with the manipulation of combo item selection when sending raw message(CB_SETCURSEL) or using the new feature "SelComboItem" command added...
816
x shri
x_shri420
Apr 4, 2005 7:18 am
Hi All, Can anyone point me to resources/scripts which will be helpfull in controling settings of IE->Options->Security->ActiveX stuff Thnx in advance, Shri ...
817
pkaluski
Apr 4, 2005 7:39 am
... when ... Both ... from ... change ... 2nd ... of ... Hmm... Good point. It behaves as expected. CBN_SELCHANGE documentation on MSDN says that it is not...
818
Dennis K. Paulsen
ctrondlpaulsden
Apr 7, 2005 1:02 am
You could use the following that simulates a Win-d SendRawKey(VK_LWIN, 0); SendKeys('d'); SendRawKey(VK_LWIN, KEYEVENTF_KEYUP) Regards, Dennis K. Paulsen ... ...
819
Dennis K. Paulsen
ctrondlpaulsden
Apr 7, 2005 1:07 am
Hello, The best source of information is the ReadMe file and example scripts; which are available at http://sourceforge.net/projects/winguitest It is also...