Ask Your Question
2

What is the method for including \xFF in a command line parameter for a Robot Framework test?

asked 2021-04-22 11:00:00 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2021-06-20 02:00:00 +0000

djk gravatar image

To include the \xFF character in a command line parameter for a Robot Framework test, you can use the Unicode escape sequence \u00FF. For example, if you want to pass the string "hello\xffworld" as a command line parameter, you can use the following syntax:

--variable PARAM:"hello\u00FFworld" tests\example_robot_test.robot

In this example, the \xFF character is represented by the Unicode escape sequence \u00FF. The value "hello\xffworld" will be passed as the value of the variable PARAM to the Robot Framework test.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-04-22 11:00:00 +0000

Seen: 8 times

Last updated: Jun 20 '21