I'm using the Robot Framework Ride to run a test. This is the test case structure:
if A>B:
print 1
print 2
print 3
if C>D:
print 4
print 5
I didn't find a way to execute multiple commands below one if
. I found one keyword Run Keyword if
, but it can only execute one statement.