Specflow cannot process special characters

423 Views Asked by At

I'm trying to check DB entries using feature files in specflow an it doesn't seem to work. Instead of reading the DB entry (that contains special characters (µ,ß,ä...), Specflow recognises characters such as µ,ß,ä as little '?'.

Is there any kind of package or plugin I can use to solve the issue or do I have to convert the characters within the step definition?

Thanks.

1

There are 1 best solutions below

0
On

To handle those characters you can use unicode. Basically, let's say you get you get ä from DB then you can use \u00E4 to validate the text. Find relevant unicode from the link and assert using it.

Basically, the code will look as follows,

Assert.Equals(dbstring, '\u00E4');