如何使用“|” specflow 功能中的关键字 table

How to use the "|" keyword in a specflow feature table

我有一个 specflow table 如下:

| ViewableValue | Id  | AnotherId |
| "1 | 2 | 3:2" | abc | 123       |

问题是,Specflow 似乎不接受“|” table 中的关键字。我怎样才能逃脱它,以便我可以将它作为我的 table?

中的一个值

在尝试了一些事情后,我找到了自己问题的答案。就这么简单:

| ViewableValue | Id  | AnotherId |
| 1 \| 2 \| 3:2 | abc | 123       |