Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
"use strict";
add_task(async function noEventWhenPageDomainDisabled({ client }) {
await runFrameNavigatedTest(client, 0, async () => {
info("Navigate to a page with nested iframes");
await loadURL(FRAMESET_NESTED_URL);
});
});
add_task(async function noEventAfterPageDomainDisabled({ client }) {
const { Page } = client;
await Page.enable();
await Page.disable();
await runFrameNavigatedTest(client, 0, async () => {
info("Navigate to a page with nested iframes");
await loadURL(FRAMESET_NESTED_URL);
});
});
add_task(async function eventWhenNavigatingWithNoFrames({ client }) {
const { Page } = client;
await Page.enable();
await runFrameNavigatedTest(client, 1, async () => {
info("Navigate to a page with no iframes");
await loadURL(PAGE_URL);
});
});
add_task(async function eventsWhenNavigatingWithFrames({ client }) {
const { Page } = client;
await Page.enable();
await runFrameNavigatedTest(client, 3, async () => {
info("Navigate to a page with iframes");
await loadURL(FRAMESET_MULTI_URL);
});
});
add_task(async function eventWhenNavigatingWithNestedFrames({ client }) {
const { Page } = client;
await Page.enable();
await runFrameNavigatedTest(client, 4, async () => {
info("Navigate to a page with nested iframes");
await loadURL(FRAMESET_NESTED_URL);
});
});
async function runFrameNavigatedTest(client, expectedEventCount, callback) {
const { Page } = client;
const NAVIGATED = "Page.frameNavigated";
const history = new RecordEvents(expectedEventCount);
history.addRecorder({
event: Page.frameNavigated,
eventName: NAVIGATED,
messageFn: payload => {
return `Received ${NAVIGATED} for frame id ${payload.frame.id}`;
},
});
await callback();
const frameNavigatedEvents = await history.record();
is(
frameNavigatedEvents.length,
expectedEventCount,
"Got expected amount of frameNavigated events"
);
if (expectedEventCount == 0) {
return;
}
const frames = await getFlattenedFrameTree(client);
frameNavigatedEvents.forEach(({ payload }) => {
const { frame } = payload;
const expectedFrame = frames.get(frame.id);
Assert.deepEqual(frame, expectedFrame, "Got expected frame details");
});
}