{"ScriptPreparationCode":null,"TestCases":[{"Name":"xhr","Code":"const xhr = new XMLHttpRequest();\r\nxhr.open(\u0027GET\u0027, \u0027https://en.wikipedia.org/wiki/Main_Page\u0027);\r\nxhr.onload = () =\u003E document.getElementById(\u0027container\u0027).innerHTML \u002B= xhr.responseText;\r\nxhr.send();","IsDeferred":false},{"Name":"fetch","Code":"fetch(\u0027https://en.wikipedia.org/wiki/Main_Page\u0027).then(response =\u003E response.text()).then(text =\u003E document.getElementById(\u0027container\u0027).innerHTML = text)","IsDeferred":false}]}