如何在小黄瓜中放入带有换行符的字符串消息?
How can I put a String message with a line break in gherkin?
示例:然后我收到消息“注册成功
欢迎管理员
您可以在 Gherkin 中使用文档字符串:
Then the message reads
"""
Hello
World
"""
在您的步骤定义中,您可以使用 String
参数类型。
示例:然后我收到消息“注册成功
欢迎管理员
您可以在 Gherkin 中使用文档字符串:
Then the message reads
"""
Hello
World
"""
在您的步骤定义中,您可以使用 String
参数类型。