FOR
After tokenising the assigned variable is of type VARIABLE with FOR loops but shall be ASSIGN:
Example:
FOR ${i} IN RANGE 10 # ${i} is: token.type == "VARIABLE"
Log ${i}
END
Here is an assignment happening as in:
Therefore VARIABLE would be considered "wrong" here.
TRY/EXCEPT
Similar situation is with EXCEPT AS variables. they are also VARIABLE
Example:
TRY
Fail failure message
EXCEPT AS ${error} # ${error} is: token.type == "VARIABLE"
Log my error ${error}
END
Should also be ASSIGN after the AS
Cheers
FOR
After tokenising the assigned variable is of type
VARIABLEwith FOR loops but shall beASSIGN:Example:
Here is an assignment happening as in:
${i} Set Variable 1Therefore
VARIABLEwould be considered "wrong" here.TRY/EXCEPT
Similar situation is with EXCEPT AS variables. they are also
VARIABLEExample:
Should also be
ASSIGNafter the ASCheers