The documentation doesn't have any information about what would be the return value of the keywords. The documentation regarding setting up library itself is wrong.
This works :
Library AutoItLibrary 30 ${OUTPUTDIR}
This fails:
Library AutoItLibrary 30 ${OUTPUTDIR} ${True}
I went through the source code and it was observed that there is no parameter for output Dir in init.py
def __init__(self, TimeOut=60, CaptureScreenOnError=False) :
so the actual configuration for importing library is:
Library AutoItLibrary 30 ${True}
Also:
The documentation says the keyword works exactly as per autoIT documentations. But for autoIT each keyword gives a status code (0 if fails else the handler)
Does this library uses these outputs or we have to use the wrapper keywords like win wait active and all .
Thanks again for your time and efforts in looking into this.
The documentation doesn't have any information about what would be the return value of the keywords. The documentation regarding setting up library itself is wrong.
This works :
Library AutoItLibrary 30 ${OUTPUTDIR}This fails:
Library AutoItLibrary 30 ${OUTPUTDIR} ${True}I went through the source code and it was observed that there is no parameter for output Dir in init.py
def __init__(self, TimeOut=60, CaptureScreenOnError=False) :so the actual configuration for importing library is:
Library AutoItLibrary 30 ${True}Also:
The documentation says the keyword works exactly as per autoIT documentations. But for autoIT each keyword gives a status code (0 if fails else the handler)
Does this library uses these outputs or we have to use the wrapper keywords like win wait active and all .
Thanks again for your time and efforts in looking into this.