vote up 1 vote down star
1

I'd like to write a program able to "use" other programs by taking control of the mouse/keyboard and being able to "see" what's on the screen.

I used AutoIt to do something similar, but I had to cheat sometimes because the language is not that powerful, or maybe it's just that I suck and I'm not able to do that much with it :P

So... I need to:

  • Take screenshots, then I will compare them to make the program "understand", but it needs to "see"
  • Use the mouse: move, click and release, it's simple, isn't it?
  • Using the keyboard: pressing some keys, or key combinations, including special keys like Alt,Ctrl ect...

How can I do that in python?
Does it works in both linux and windows? (this could be really really cool, but it is not necessary)

flag

64% accept rate
1  
check out this question: stackoverflow.com/questions/1032489/… – Nick D Jul 5 at 17:58
Nick, the answers to that question didn't mention screenshots. However, you could probably automate that part. My guess is that Andrea wants a complete automation package for regression testing. – Dave Jarvis Jul 5 at 19:00
If it is really for regression testing, then Andrea is most likely on the wrong path. It's not a good idea to automate GUI testing except in most bizzare circumstances. – Juozas Kontvainis Jul 5 at 19:48

6 Answers

vote up 1 vote down

You can use WATSUP under Windows.

link|flag
vote up 1 vote down

If you are comfortable with pascal, a really powerful keyboard/mouse/screen-reading program is SCAR: http://freddy1990.com/index.php?page=product&name=scar It can do OCR, bitmap finding, color finding, etc. It's often used for automating online games, but it can be used for any situation where you want to simulate a human reading the screen and giving input.

link|flag
vote up 1 vote down

I've had some luck with similar tasks using PyWinAuto.

pywinauto is a set of python modules to automate the Microsoft Windows GUI. At it's simplest it allows you to send mouse and keyboard actions to windows dialogs and controls.

It also has some support for capturing images of dialogs and such using the Python Imaging Library PIL.

link|flag
vote up 1 vote down

AutoIt is completely capable of doing everything you mentioned. When I'm wanting to do some automation but use the features of Python, I find it easiest to use AutoItX which is a DLL/COM control.

Taken from this answer of mine:

import win32com.client
oAutoItX = win32com.client.Dispatch( "AutoItX3.Control" )

oAutoItX.Opt("WinTitleMatchMode", 2) #Match text anywhere in a window title

width = oAutoItX.WinGetClientSizeWidth("Firefox")
height = oAutoItX.WinGetClientSizeHeight("Firefox")

print width, height
link|flag
vote up 0 vote down

There are numerous software packages that already do this. I believe HP QuickTest Pro has this functionality. This seems to be in the category of automated regression testing.

link|flag
vote up 0 vote down

I've used the Windows (only) Input API to write a VNC-like remote-control application in the past. It lets you fake keyboard and mouse input nicely at a system level (ie not just posting events to a single application).

If you're trying to do any sort of automated testing of whole systems at the GUI level, this excellent USENIX paper describing automated responsiveness testing is a must-read.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.