According to the example in the manual of 'Robot Framework', in order to provide keywords from a remote computer one has to instantiate RobotRemoteServer
with an instance of the class implementing the Keywords
RobotRemoteServer(ExampleRemoteLibrary(), *sys.argv[1:])
What if I have multiple libraries/classes which I want to be available remotely? Do I have to start a new server for each class?
Is robot framework suitable for automated distributed testing, where multiple computers have to run synchronously in order to test a particular case?
found a related discussion here: