输入以“#”开头的文本
Input text that starts with "#"
如何使用 Robot Framework 将以“### text and stuff”开头的文本插入到 selenium2library 的 "Input Text" 关键字参数中?
您必须使用反斜杠转义第一个 #
:
| | input text | id=some-element | \### text and stuff
机器人框架用户指南中标题为 Rules for parsing the data 的部分提到了这一点。
如何使用 Robot Framework 将以“### text and stuff”开头的文本插入到 selenium2library 的 "Input Text" 关键字参数中?
您必须使用反斜杠转义第一个 #
:
| | input text | id=some-element | \### text and stuff
机器人框架用户指南中标题为 Rules for parsing the data 的部分提到了这一点。