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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import { Module } from "chrome://remote/content/shared/messagehandler/Module.sys.mjs";
const lazy = {};
ChromeUtils.defineESModuleGetters(lazy, {
assert: "chrome://remote/content/shared/webdriver/Assert.sys.mjs",
error: "chrome://remote/content/shared/webdriver/Errors.sys.mjs",
Marionette: "chrome://remote/content/components/Marionette.sys.mjs",
UserContextManager:
"chrome://remote/content/shared/UserContextManager.sys.mjs",
});
/**
* An object that holds information about a user context.
*
* @typedef UserContextInfo
*
* @property {string} userContext
* The id of the user context.
*/
/**
* Return value for the getUserContexts command.
*
* @typedef GetUserContextsResult
*
* @property {Array<UserContextInfo>} userContexts
* Array of UserContextInfo for the current user contexts.
*/
class BrowserModule extends Module {
constructor(messageHandler) {
super(messageHandler);
}
destroy() {}
/**
* Commands
*/
/**
* Terminate all WebDriver sessions and clean up automation state in the remote browser instance.
*
* Session clean up and actual broser closure will happen later in WebDriverBiDiConnection class.
*/
async close() {
// TODO Bug 1838269. Enable browser.close command for the case of classic + bidi session, when
// session ending for this type of session is supported.
if (lazy.Marionette.running) {
throw new lazy.error.UnsupportedOperationError(
"Closing browser with the session which was started with Webdriver classic is not supported," +
"you can use Webdriver classic session delete command which will also close the browser."
);
}
}
/**
* Creates a user context.
*
* @returns {UserContextInfo}
* UserContextInfo object for the created user context.
*/
async createUserContext() {
const userContextId = lazy.UserContextManager.createContext("webdriver");
return { userContext: userContextId };
}
/**
* Returns the list of available user contexts.
*
* @returns {GetUserContextsResult}
* Object containing an array of UserContextInfo.
*/
async getUserContexts() {
const userContexts = lazy.UserContextManager.getUserContextIds().map(
userContextId => ({
userContext: userContextId,
})
);
return { userContexts };
}
/**
* Closes a user context and all browsing contexts in it without running
* beforeunload handlers.
*
* @param {object=} options
* @param {string} options.userContext
* Id of the user context to close.
*
* @throws {InvalidArgumentError}
* Raised if an argument is of an invalid type or value.
* @throws {NoSuchUserContextError}
* Raised if the user context id could not be found.
*/
async removeUserContext(options = {}) {
const { userContext: userContextId } = options;
lazy.assert.string(
userContextId,
`Expected "userContext" to be a string, got ${userContextId}`
);
if (userContextId === lazy.UserContextManager.defaultUserContextId) {
throw new lazy.error.InvalidArgumentError(
`Default user context cannot be removed`
);
}
if (!lazy.UserContextManager.hasUserContextId(userContextId)) {
throw new lazy.error.NoSuchUserContextError(
`User Context with id ${userContextId} was not found`
);
}
lazy.UserContextManager.removeUserContext(userContextId, {
closeContextTabs: true,
});
}
}
// To export the class as lower-case
export const browser = BrowserModule;
|