I am new to python and have just installed pywinauto using easy_install.
I am trying to execute a simple code as follow:
from pywinauto import application
app = application.Application.start ('notepad.exe')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: type object 'Application' has no attribute 'start'
As you see I am getting an error. I tried searching for an answer for this on the web but could not find out why this is happening.
Please help. thanks in advance.
VG