JPype and robotframework custom keywords

45 Views Asked by At

I'm trying to use JPype with Robotframework to be able to use java-based SUTs.

I used this (https://forum.robotframework.org/t/connecting-java-with-robot-framework/5253) forum Post to implement it (modified it a bit to work with non-static methods) and it works well. However, I'm unable to create other functions in this JavaWrapper.py to use as keywords in my .robot file. The reason I want to do it, is to be able to use different arguments for the constructor of the java object for each test case.

My python code looks something like this:

def foo(self, name: str):
    do_something()

And in the robot file I'm using:

Foo    name

The error I'm getting is just No keyword with name 'Foo' found.. At the same time the keywords from the jar file are detected normally and I can use them without errors or warnings.

0

There are 0 best solutions below