Source code
Revision control
Copy as Markdown
Other Tools
<!-- Any copyright is dedicated to the Public Domain.
<!doctype html>
<html>
  <head>
    <meta charset="utf-8"/>
    <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
    <meta http-equiv="Pragma" content="no-cache" />
    <meta http-equiv="Expires" content="0" />
    <title>Network Monitor Test Page</title>
  </head>
  <body>
    <p>HAR import test</p>
    <script type="text/javascript">
      /* exported executeTest, executeTest2, executeTest3 */
      "use strict";
      function post(address, data) {
        return new Promise(resolve => {
          const xhr = new XMLHttpRequest();
          xhr.open("POST", address, true);
          xhr.setRequestHeader("Content-Type", "application/json");
          xhr.onload = resolve;
          xhr.send(data);
        });
      }
      function get(address) {
        return new Promise(resolve => {
          const xhr = new XMLHttpRequest();
          xhr.open("GET", address);
          xhr.onload = resolve;
          xhr.send();
        });
      }
      async function executeTest() {
        const url = "html_har_import-test-page.html";
        const data = "{'first': 'John', 'last': 'Doe'}";
        await post(url, data);
        await get("sjs_cookies-test-server.sjs");
        await get("sjs_cache-test-server.sjs");
      }
  </script>
  </body>
</html>