fune/devtools/client/netmonitor/test/browser_net_reload-button.js
Fred Lin ae29d01f9a Bug 1316291 - PART 2:remove request-list elements with fixed ID;r=Honza
MozReview-Commit-ID: 2myRfMX3XQB

--HG--
extra : rebase_source : 9aa85177752492a0e6d83fe911f52bbd1619ac07
2017-02-13 14:29:39 +08:00

25 lines
669 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Tests if the empty-requests reload button works.
*/
add_task(function* () {
let { monitor } = yield initNetMonitor(SIMPLE_URL);
info("Starting test... ");
let { document } = monitor.panelWin;
let wait = waitForNetworkEvents(monitor, 1);
EventUtils.sendMouseEvent({ type: "click" },
document.querySelector(".requests-list-reload-notice-button"));
yield wait;
is(document.querySelectorAll(".request-list-item").length, 1,
"The request list should have one item after reloading");
return teardown(monitor);
});