{"ScriptPreparationCode":null,"TestCases":[{"Name":"xhr","Code":"const xhr = new XMLHttpRequest();\r\nxhr.open(\u0027GET\u0027, \u0027https://jsonplaceholder.typicode.com/users\u0027);\r\nxhr.onload = () =\u003E console.log(JSON.parse(xhr.responseText));\r\nxhr.send();","IsDeferred":false},{"Name":"fetch","Code":"fetch(\u0027https://jsonplaceholder.typicode.com/users\u0027).then(response =\u003E response.json()).then(console.log)","IsDeferred":false}]}