Re: script to automate GUI application (newbie)

2005-01-18 Thread McBooCzech
Try following scripting language to automating Windows GUI, it simulates keystrokes (supports most keyboard layouts), simulates mouse movements and clicks and does tons of other stuff: http://www.hiddensoft.com/autoit3/ It works nicely for me. -- http://mail.python.org/mailman/listinfo/python-l

Re: script to automate GUI application (newbie)

2005-01-18 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, Jim <[EMAIL PROTECTED]> wrote: > >It sounds like a case for the Expect program, to me. Try Google-ing >for "Expect". If you are looking for a Python approach, then try >googling for "Expect Python". > >Jim > No--that is, I find his description unambiguous in NOT a

Re: script to automate GUI application (newbie)

2005-01-18 Thread Jim
It sounds like a case for the Expect program, to me. Try Google-ing for "Expect". If you are looking for a Python approach, then try googling for "Expect Python". Jim -- http://mail.python.org/mailman/listinfo/python-list

Re: script to automate GUI application (newbie)

2005-01-18 Thread Grig Gheorghiu
Bogdan, If your app is written in Java, take a look at Marathon (http://marathonman.sourceforge.net/). It uses Jython as its scripting language and it's pretty smart about how it does automation (i.e. it doesn't look at screen coordinates, but at control names). It also offers a capture/replay fun

RE: script to automate GUI application (newbie)

2005-01-18 Thread Tim Golden
[bogdan romocea] | I have a GUI application (Windows; apparently written in Java) which I | want to use through a script (without a mouse or keyboard). First, one | of several buttons needs to be clicked (no keyboard shortcuts | available, but I can measure the coordinates in pixels from the top |

script to automate GUI application (newbie)

2005-01-18 Thread bogdan romocea
Dear Python experts, I have a GUI application (Windows; apparently written in Java) which I want to use through a script (without a mouse or keyboard). First, one of several buttons needs to be clicked (no keyboard shortcuts available, but I can measure the coordinates in pixels from the top left