Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
"use strict";
/**
* Test if links in headers panel are clickable.
*/
add_task(async function () {
const { tab, monitor } = await initNetMonitor(JSON_LONG_URL, {
requestCount: 1,
});
info("Starting test... ");
const { document, store, windowRequire } = monitor.panelWin;
const Actions = windowRequire("devtools/client/netmonitor/src/actions/index");
store.dispatch(Actions.batchEnable(false));
await performRequests(monitor, tab, 1);
info("Selecting first request");
EventUtils.sendMouseEvent(
{ type: "mousedown" },
document.querySelectorAll(".request-list-item")[0]
);
info("Waiting for request and response headers");
await waitForRequestData(store, ["requestHeaders", "responseHeaders"]);
const headerLink = document.querySelector(".objectBox-string .url");
const expectedURL =
const onTabOpen = BrowserTestUtils.waitForNewTab(gBrowser, expectedURL, true);
info("Click on a first link in Headers panel");
headerLink.click();
await onTabOpen;
ok(onTabOpen, "New tab opened from link");
return teardown(monitor);
});