Kamil Sokołowski

Results 1 comments of Kamil Sokołowski

Hi, you can always define such keyword in custom library like this: 1. custom_lib.py ``` @keyword def get_checkbox_state_py(checkbox_control: CheckBoxControl) -> bool: toggle = checkbox_control.GetTogglePattern() return toggle.ToggleState ``` 2. custom_resource.resource ```...