I have a specflow table as follows:
| ViewableValue | Id | AnotherId |
| "1 | 2 | 3:2" | abc | 123 |
The problem is, Specflow doesn't seem to accept the "|" keyword in the table. How can I escape it so I can have it as a value inside my table?
I found the answer to my own question after trying some things. It is as simple as doing this:
| ViewableValue | Id | AnotherId |
| 1 \| 2 \| 3:2 | abc | 123 |