I tried to open a pdf file and save it as xml1.0 using pywinauto. i have started writting the below code but i am not able to find the controls for menu and saving it as xml. i am new to pywinauto. can you help me in this. and also please suggest where can i get the tutorial for python pywinauto.
from pywinauto import application
In_File = "sample.pdf"
Ap = "C:\Program Files\Adobe\Acrobat 7.0\Acrobat\Acrobat.exe"
app = application.Application()
app.start_(Ap)
app.
Thanks