
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@2069 fd906abe-77d9-0310-91a1-e0d9ade77398
17 lines
432 B
Python
17 lines
432 B
Python
from watsup.launcher import launchApp,terminateApp
|
|
from watsup.winGuiAuto import findTopWindows
|
|
import example2
|
|
|
|
# find an instance of SimpleForm. If one isn't there, launch it
|
|
forms=findTopWindows(wantedText='Simple Form')
|
|
if forms:
|
|
form=forms[0]
|
|
else:
|
|
form=launchApp('simple.exe',wantedText='Simple Form')
|
|
|
|
example2.main()
|
|
|
|
# and terminate the form
|
|
terminateApp(form)
|
|
|
|
|