How to include Java test libraries in a Python based Robot framework

后端 未结 1 1038
野趣味
野趣味 2021-01-03 12:18

I am trying to get a Robot framework in place based on Python. On one side of the test block box is a Python simulator for which I have written test libraries to interact w

相关标签:
1条回答
  • 2021-01-03 13:06

    To directly use keywords written in java, you'll need to use jython.

    Another option is to use the remote library interface. You set up a little XML-RPC server (in java), then import the library by giving robot the address of the server.

    The good news is that someone has already written a java based server. See https://github.com/ombre42/jrobotremoteserver

    0 讨论(0)
提交回复
热议问题