Keyword: Should Not Be Lower As Number

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?

1 Like

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.

Hi @valentijnpeters

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?

1 Like

Very helpfull all! thanks x100. cool.