Open GoogleCodeExporter opened 8 years ago
The version of Robot Framework is 2.7.1(64)
Original comment by kyooky12...@gmail.com
on 6 Jun 2012 at 2:30
MyRemote.py
import os
import sys
from AutoItLibrary import *
class MyRemote():
def __init__(self):
print "init"
def my_keyword(self):
print "my keyword"
AutoItLibrary().Run("calc") #here must invoke some API in AutoItLibrary, or there will be no problem
if __name__ == '__main__':
from robotremoteserver import RobotRemoteServer
RobotRemoteServer(MyRemote(), *sys.argv[1:])
Original comment by kyooky12...@gmail.com
on 6 Jun 2012 at 2:36
Original issue reported on code.google.com by
kyooky12...@gmail.com
on 6 Jun 2012 at 2:28