1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/* 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);
});
|