My defined class in Python:
class jpg(Abc):
def __init__(self, *args, **kwargs):
super(jpg, self).__init__(**kwargs)
self.TAG = 'tag'
self.PARAMS = {}
I import this class in Robot framework:
Import Library jpg host=${ip} WITH NAME jpg
How can I call PARAMS in Robot Framework?
I tried with ${jpg.PARAMS} or jpg.${PARAMS}, but it didn't work
I want to do 2 actions on this variable: set and get
