You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this great work.
but mark every function with @Keyword is really boring. is there a way to print keyword info without mark @Keyword.
every function can be recognize as keyword default
The text was updated successfully, but these errors were encountered:
the problem with making every function a keyword is that most function calls are internal code that you would never want to see in the robot log. for example, the info function from robot.api.logger would fill the log with keywords for all of the internal robot functions in its implementation.
additionally, implementing such a change would be quite difficult, since it would need to somehow wrap every single function in every module dynamically at runtime.
if i updated the pytest_robotframework.keywordify function to allow you to keywordify every function in an individual module, would that help with your use case? for example:
Thanks for this great work.
but mark every function with @Keyword is really boring. is there a way to print keyword info without mark @Keyword.
every function can be recognize as keyword default
The text was updated successfully, but these errors were encountered: