122 lines
5.0 KiB
JavaScript
122 lines
5.0 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.Firefox = void 0;
|
|
|
|
var os = _interopRequireWildcard(require("os"));
|
|
|
|
var _fs = _interopRequireDefault(require("fs"));
|
|
|
|
var _path = _interopRequireDefault(require("path"));
|
|
|
|
var _ffBrowser = require("./ffBrowser");
|
|
|
|
var _ffConnection = require("./ffConnection");
|
|
|
|
var _browserType = require("../browserType");
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
|
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
|
|
/**
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
|
* Modifications copyright (c) Microsoft Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
class Firefox extends _browserType.BrowserType {
|
|
constructor(playwrightOptions) {
|
|
super('firefox', playwrightOptions);
|
|
}
|
|
|
|
_connectToTransport(transport, options) {
|
|
return _ffBrowser.FFBrowser.connect(transport, options);
|
|
}
|
|
|
|
_rewriteStartupError(error) {
|
|
return error;
|
|
}
|
|
|
|
_amendEnvironment(env, userDataDir, executable, browserArguments) {
|
|
if (!_path.default.isAbsolute(os.homedir())) throw new Error(`Cannot launch Firefox with relative home directory. Did you set ${os.platform() === 'win32' ? 'USERPROFILE' : 'HOME'} to a relative path?`);
|
|
|
|
if (os.platform() === 'linux') {
|
|
return { ...env,
|
|
// On linux Juggler ships the libstdc++ it was linked against.
|
|
LD_LIBRARY_PATH: `${_path.default.dirname(executable)}:${process.env.LD_LIBRARY_PATH}`
|
|
};
|
|
}
|
|
|
|
if (os.platform() === 'darwin') {
|
|
return { ...env,
|
|
// @see https://github.com/microsoft/playwright/issues/5721
|
|
MOZ_WEBRENDER: 0
|
|
};
|
|
}
|
|
|
|
return env;
|
|
}
|
|
|
|
_attemptToGracefullyCloseBrowser(transport) {
|
|
const message = {
|
|
method: 'Browser.close',
|
|
params: {},
|
|
id: _ffConnection.kBrowserCloseMessageId
|
|
};
|
|
transport.send(message);
|
|
}
|
|
|
|
_defaultArgs(options, isPersistent, userDataDir) {
|
|
const {
|
|
args = [],
|
|
devtools,
|
|
headless
|
|
} = options;
|
|
if (devtools) console.warn('devtools parameter is not supported as a launch argument in Firefox. You can launch the devtools window manually.');
|
|
const userDataDirArg = args.find(arg => arg.startsWith('-profile') || arg.startsWith('--profile'));
|
|
if (userDataDirArg) throw new Error('Pass userDataDir parameter to `browserType.launchPersistentContext(userDataDir, ...)` instead of specifying --profile argument');
|
|
if (args.find(arg => arg.startsWith('-juggler'))) throw new Error('Use the port parameter instead of -juggler argument');
|
|
const firefoxUserPrefs = isPersistent ? undefined : options.firefoxUserPrefs;
|
|
|
|
if (firefoxUserPrefs) {
|
|
const lines = [];
|
|
|
|
for (const [name, value] of Object.entries(firefoxUserPrefs)) lines.push(`user_pref(${JSON.stringify(name)}, ${JSON.stringify(value)});`);
|
|
|
|
_fs.default.writeFileSync(_path.default.join(userDataDir, 'user.js'), lines.join('\n'));
|
|
}
|
|
|
|
const firefoxArguments = ['-no-remote'];
|
|
|
|
if (headless) {
|
|
firefoxArguments.push('-headless');
|
|
} else {
|
|
firefoxArguments.push('-wait-for-browser');
|
|
firefoxArguments.push('-foreground');
|
|
}
|
|
|
|
firefoxArguments.push(`-profile`, userDataDir);
|
|
firefoxArguments.push('-juggler-pipe');
|
|
firefoxArguments.push(...args);
|
|
if (isPersistent) firefoxArguments.push('about:blank');else firefoxArguments.push('-silent');
|
|
return firefoxArguments;
|
|
}
|
|
|
|
}
|
|
|
|
exports.Firefox = Firefox; |