robotframework-2.7.7.atest.testdata.variables.PythonClass.py Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of robotframework Show documentation
Show all versions of robotframework Show documentation
High level test automation framework
The newest version!
class PythonClass:
python_string = 'hello'
python_integer = None
LIST__python_list = ['a', 'b', 'c']
def __init__(self):
self.python_integer = 42
def python_method(self):
pass
@property
def python_property(self):
return 'value'