예제 #1
0
def getLastTextout(core_api):
    """Return the last input text used in captureN
    """
    lto = core_api.getLastTextout()
    if lto is None:
        return lto
    else:
        return cw_bytearray(lto)
예제 #2
0
def getLastTextin(core_api):
    """Return the last input text used in captureN
    """
    lti = core_api.getLastTextin()
    if lti is None:
        return lti
    else:
        return cw_bytearray(lti)
예제 #3
0
def getLastKey(core_api):
    """Return the last key used in captureN
    """
    key = core_api.getLastKey()
    if key is None:
        return key
    else:
        return cw_bytearray(key)
예제 #4
0
def getLastExpected(core_api):
    """Return the last input text used in captureN
    """
    le = core_api.getLastExpected()

    if le is None:
        return le
    else:
        return cw_bytearray(le)
 def last_textout(self):
     """The last output text received from the target. Read-only.
     """
     return cw_bytearray(self.textout)
 def last_textin(self):
     """The last input text sent to the target. Read-only.
     """
     return cw_bytearray(self.textin)
 def last_key(self):
     """The last key sent to the target. Read-only.
     """
     return cw_bytearray(self.key)