Deserialize Config JSON: Bad JSON escape sequence: \U. Path 'QA.InputFilePath', line 50, position 24

Hi @Pujari_Manjunatha

if you have “\U” in your configuration file, you can replace it with "" to represent a single backslash character.

Thanks!!

@Pujari_Manjunatha Try escaping the backslash before deserialize using Replace(“",”\"). Hope it helps.