Export to GitHub

robotframework-autoitlibrary - issue #19

Adding support for AutoItSetOption function.


Posted on Jul 8, 2011 by Swift Ox

Sometimes it is necessary to tweak AutoIt options such as window title match mode, therefore we need support for AutoItSetOption.

My version is here:

def AutoItSetOption(self, Option, Value):
    """
    Set up AutoIt settings.
    Reference: 
    AutoItX.chm::/html/com_interface/methods/AutoItSetOption.htm
    """
    #print a message to log
    self._infoKW(self.AutoItSetOption, Option, Value)
    self._AutoIt.AutoItSetOption(str(Option), int(Value))

Thanks!

Status: New

Labels:
Type-Defect Priority-Medium