File tree Expand file tree Collapse file tree 2 files changed +16
-13
lines changed Expand file tree Collapse file tree 2 files changed +16
-13
lines changed Original file line number Diff line number Diff line change @@ -87,11 +87,12 @@ Warnings and errors are preserved
87
87
88
88
*** Keywords ***
89
89
My FOR
90
- :FOR ${item } IN one two three LAST
91
- \ Run Keyword If "${item } " == "LAST"
92
- \ ... Log ${KEPT FOR MESSAGE } ${item }
93
- \ ... ELSE
94
- \ ... Log ${REMOVED FOR MESSAGE } ${item }
90
+ FOR ${item } IN one two three LAST
91
+ Run Keyword If "${item } " == "LAST"
92
+ ... Log ${KEPT FOR MESSAGE } ${item }
93
+ ... ELSE
94
+ ... Log ${REMOVED FOR MESSAGE } ${item }
95
+ END
95
96
96
97
My WUKS
97
98
Set Test Variable $COUNTER ${COUNTER + 1 }
Original file line number Diff line number Diff line change @@ -57,9 +57,10 @@ Used in template keyword
57
57
58
58
Used in for loop
59
59
[Documentation] PASS Message with 'foo'
60
- :FOR ${var } IN foo bar
61
- \ Pass Execution Message with '${var } '
62
- \ Should Not Be Executed
60
+ FOR ${var } IN foo bar
61
+ Pass Execution Message with '${var } '
62
+ Should Not Be Executed
63
+ END
63
64
Should Not Be Executed
64
65
65
66
Used in setup
@@ -104,11 +105,12 @@ After continuable failure in FOR loop
104
105
... 2) Failure 2
105
106
...
106
107
... 3) Failure 3
107
- :FOR ${i } IN RANGE 1 10
108
- \ Run Keyword And Continue On Failure Fail Failure ${i }
109
- \ Run Keyword If $i > 2 Run Keywords
110
- \ ... Pass Execution This message is NOT used AND
111
- \ ... Should Not Be Executed
108
+ FOR ${i } IN RANGE 1 10
109
+ Run Keyword And Continue On Failure Fail Failure ${i }
110
+ Run Keyword If $i > 2 Run Keywords
111
+ ... Pass Execution This message is NOT used AND
112
+ ... Should Not Be Executed
113
+ END
112
114
Should Not Be Executed
113
115
114
116
After continuable failure and before failing teardown
You can’t perform that action at this time.
0 commit comments