Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to break a long line of arguments into several short lines?

Example:

Log To Console   This is the first argument   This is the second argument   This is the third argument

How can I break a line with multiple short arguments?

I tried using \ or just breaking the lines (without using any special characters) but it didn't work.

Edit: To clarify - I want to provide arguments to a keyword in multiple lines. I want to physically split one long line of source code into multiple short lines.

like image 764
NPS Avatar asked Jun 27 '18 09:06

NPS


1 Answers

From the User Guide:

If there is more data than readily fits a row, it possible to use ellipsis (...) to continue the previous line.

    Example test     [Documentation]    Documentation   for this    test case.
                     ...      This can get  quite   long...
                     Do X     one       two     three
                     ...      four      five    six
like image 69
Psytho Avatar answered Nov 09 '22 08:11

Psytho