please create the two following Keywords:
(I leave all the mega bla bla behind why regex does not work)
Should Not Be Lower As Number
Should Not Be Higher As Number
preferably both in Browser Library
as
SeleniumLibrary.
please create the two following Keywords:
(I leave all the mega bla bla behind why regex does not work)
Should Not Be Lower As Number
Should Not Be Higher As Number
preferably both in Browser Library
as
SeleniumLibrary.
Is this a request?
You can easily implement these keywords in a custom library. See for example
How to write and use custom Robot Framework Python RPA libraries (robocorp.com)
Browser library with assertion already support this.
The Built-In library has Should Be True
${mymum}= Set Variable 13
Should Be True ${mymum}>10 # Should Not Be Lower As Number
Should Be True ${mymum}<20 # Should Not Be Higher As Number
Does that not do what you needed?
Very helpfull all! thanks x100. cool.