yanne / api-testing

I am using this to test GitHub API
1 stars 0 forks source link

Run Keyword If argument enhancement #166

Open yanne opened 10 years ago

yanne commented 10 years ago

In the Robot Framework 2.74, the Run Keyword If has optional ELSE and ELSE IF arguments. In Ride these arguments are placed in a single line: Run Keyword If '${status}'=='PASS' Do something ELSE IF '${status}'=='FAIL' Do other thing ELSE Fail

It would provide better reading, if ride could place the these arguments in separate lines: Run Keyword If '${status}'=='PASS' Do something ... ELSE IF '${status}'=='FAIL' Do other thing ... ELSE Fail

If this could not done automatically (all this sort of automatic is usually bad), one can do this manually. But when saved and reloaded the test suite, this should be kept and not lost.

This issue was originally reported to Google Code on Sep 11, 2012.

yanne commented 10 years ago

Original comment by mikko.ko...@gmail.com on Oct 9, 2012.

Requires changes to Robot Framework parsing logic or another parser for RIDE.

Not going to be implemented before RIDE 1.0.

yanne commented 10 years ago

Original comment by jussi.ao...@gmail.com on Nov 6, 2012.

Created issue 1273 to Robot. https://code.google.com/p/robotframework/issues/detail?id=1273

yanne commented 10 years ago

Original comment by vinothg....@gmail.com on Sep 23, 2013.

Please fix this issue as soon as possible.