{"ScriptPreparationCode":"function showResult(data) {\r\n console.log(data);\r\n}\r\nvar newUrl = \u0022https://www.googleapis.com/discovery/v1/apis\u0022;","TestCases":[{"Name":"manual parse","Code":"var xhr = new XMLHttpRequest();\r\nxhr.onload = data =\u003E showResult(JSON.parse(xhr.responseText));\r\nxhr.open(\u0027GET\u0027, newUrl, true);\r\nxhr.send();","IsDeferred":false},{"Name":"automatic parse","Code":"var xhr = new XMLHttpRequest();\r\nxhr.responseType = \u0027json\u0027;\r\nxhr.onload = data =\u003E showResult(xhr.response);\r\nxhr.open(\u0027GET\u0027, newUrl, true);\r\nxhr.send();","IsDeferred":false}]}