How to escape double quotes in a WCAT scenario file? -
using wcat 6.3, i'd set http header including double quotes around etag:
if-none-match: "a52391cbf838cd1:0"
how escape double quotes in scenario file? snippet scenario file not working:
request { url = "/css/navigation.css"; setheader { name = "if-none-match"; value = ""a52391cbf838cd1:0""; } statuscode = 304; }
wcat based in c , scenario file uses of c syntax including escape character. correct syntax is:
setheader { name = "if-none-match"; value = "\"a52391cbf838cd1:0\""; }
Comments
Post a Comment