Updates:
        Status: Pending

Comment #1 on issue 1278 by pekka.klarck: Exit For Loop doesn't work inside Test Teardown.
http://code.google.com/p/robotframework/issues/detail?id=1278

I failed to reproduce this. The example you provided wasn't executable, so I created the following example that worked just fine. If you can still reproduce the problem with your data, please provide a simple example that I can use to reproduce it.


*** Test Case ***
My Test Case
    Keyword with exited for loop
    [Teardown]     Keyword with exited for loop

*** Keywords ***
Keyword with exited for loop
    Exited for loop
    No Operation

Exited for loop
    :FOR    ${index}    IN RANGE    10
    \    Run Keyword If    ${index}==5    Exit For Loop


Reply via email to