Can I escape the pipe in specflow (or gherkin)

亡梦爱人 提交于 2020-06-24 18:16:13

问题


I've got a specflow step table that I want to have the | (pipe) character as a part of the content.

Example:

Then the data should be
    | Field     | Value  |
    | SomeField | a|b|c  |

But this doesn't work. How can I escape the pipe character?


回答1:


Bah. I can't believe I didn't find this earlier. You CAN escape a pipe with the backslash, but the specflow syntax highlighter gets confused by it.

Then the data should be
    | Field     | Value    |
    | SomeField | a\|b\|c  |


来源:https://stackoverflow.com/questions/12960803/can-i-escape-the-pipe-in-specflow-or-gherkin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!