1
0
Fork 0
firefox/remote/cdp/test/browser/page/browser_getNavigationHistory.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

65 lines
1.6 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
add_task(async function singleEntry({ client }) {
const { Page } = client;
const data = generateHistoryData(1);
for (const entry of data) {
await loadURL(entry.userTypedURL);
}
const history = await Page.getNavigationHistory();
assertHistoryEntries(history, data, 0);
});
add_task(async function multipleEntriesWithLastIndex({ client }) {
const { Page } = client;
const data = generateHistoryData(3);
for (const entry of data) {
await loadURL(entry.userTypedURL);
}
const history = await Page.getNavigationHistory();
assertHistoryEntries(history, data, data.length - 1);
});
add_task(async function multipleEntriesWithFirstIndex({ client }) {
const { Page } = client;
const data = generateHistoryData(3);
for (const entry of data) {
await loadURL(entry.userTypedURL);
}
await gotoHistoryIndex(0);
const history = await Page.getNavigationHistory();
assertHistoryEntries(history, data, 0);
});
add_task(async function locationRedirect({ client }) {
const { Page } = client;
const pageEmptyURL =
"https://example.com/browser/remote/cdp/test/browser/page/doc_empty.html";
const sjsURL =
"https://example.com/browser/remote/cdp/test/browser/page/sjs_redirect.sjs";
const redirectURL = `${sjsURL}?${pageEmptyURL}`;
const data = [
{
url: pageEmptyURL,
userTypedURL: redirectURL,
title: "Empty page",
},
];
await loadURL(redirectURL, pageEmptyURL);
const history = await Page.getNavigationHistory();
assertHistoryEntries(history, data, 0);
});