Reputation: 814
I need to add a line break on the last variable. I'm trying to put that variable in a text box, an I need the line seperate like it is here in the code.
Any help wold be much appreciated.
T89654 Send FPL with ATSM
fdd clicktab message_editor
fdd clickbutton message_editor.atsm
fdd clickbutton message_editor.atsm.clear
fdd setfield message_editor.atsm.message (FPL-BAW123-IS
-C130/M-SIRWXY/C
-RKPC1010
-N0260F270 RATSU
-RKSI0100
-DOF/100414)
Upvotes: 0
Views: 13123
Reputation: 2460
You can add ...
fdd setfield message_editor.atsm.message (FPL
... BAW123
... IS
... C130/M-SIRWXY/C
... RKPC1010
... N0260F270 RATSU
... RKSI0100
... DOF/100414)
Upvotes: 1
Reputation: 386342
You can use \n
to insert a line break:
fdd setfield message_editor.atsm.message (FPL-BAW123...\n...100414)
The robot framework users guide mentions this in the section Forming escape sequences.
Upvotes: 2