Deserialize Config JSON: Bad JSON escape sequence: \U. Path 'QA.InputFilePath', line 50, position 24
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.
Replace each backslash with double backslashes in your json file.
Single backslash interprets differently when reading from json.