Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && debug && http3
- Manifest: devtools/client/netmonitor/test/browser.toml
/* Any copyright is dedicated to the Public Domain.
"use strict";
/**
* Tests that the request for the view-source page is displayed.
*/
add_task(async function () {
const URL = "https://example.com/";
const { monitor } = await initNetMonitor("view-source:" + URL, {
requestCount: 1,
waitForLoad: false,
});
info("Starting test... ");
const { document, store, windowRequire } = monitor.panelWin;
const Actions = windowRequire("devtools/client/netmonitor/src/actions/index");
store.dispatch(Actions.batchEnable(false));
const wait = waitForNetworkEvents(monitor, 1);
await reloadSelectedTab();
await wait;
is(
document
.querySelectorAll(".request-list-item")[0]
.querySelector(".requests-list-url").innerText,
URL,
"The url in the displayed request is correct"
);
await teardown(monitor);
});