Hi all,
I have been trying to figure out a way to use an If conditional with a regular expression, but so far haven't had any luck. I need something like this
I have a preexisting variable, lets say
${VAR}
which equals a new line separated string:
line1
line2
line3
What I would like to be able to do is something as follows:
Run Keyword If ${VAR} == 'line2' My_Keyword param
And execute that keyword online if 'line2' is found in the output. I was hoping to be able to use a regexp, but I'm thinking Should Match Regexp is not working the way I want it to there.
Any ideas?
Thanks