How do i extract the variables passed through a builtin library in robotframework

How do i extract the variables passed through a builtin library in robotframework



I have a robot file where I will pass the


Wait Until Keyword Succeeds | 2 min | 5 sec



Would I be able to to handle/extract the value/parameters passed programatically rather than using custom keyword and additional variables something very similar to


from robot.libraries.BuiltIn import BuiltIn
bi = BuiltIn()
bi.get_variable_value('$timeout') .



is there any possibility to get the passed values like that?




1 Answer
1



No, there is no built-in way to do that. You'll need to write your own custom keyword.






By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.