views:

359

answers:

3
+5  Q: 

PyQT GUI Testing

Does anyone know of a automated GUI testing package for that works with PyQT besides Squish? Nothing against Squish I am just looking for other packages. It would be cool if there were an open source package. I am doing my testing under Linux.

A: 

You should be able to use pyunit in conjunction with PyQT.

http://pyunit.sourceforge.net/

Tim Snyder
Last news from 2007?
Marcus Lindblom
While pyunit (called unittest in stdlib) is good for normal unit testing it doesn't handle GUI testing.
Paul Hildebrandt
+2  A: 

WATSUP has worked for me.

sb
Thanks, WATSUP looks interesting for Windows GUI testing. Unfortunately I need Linux PyQT GUI testing.
Paul Hildebrandt
+2  A: 

It looks like PyQT4 includes a QtTest object that can be used for unit testing.

Stuart