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

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -