Files
cypress/packages/server/lib/browsers/firefox.ts
T

755 lines
30 KiB
TypeScript

import _ from 'lodash'
import EventEmitter from 'events'
import fs from 'fs-extra'
import Debug from 'debug'
import getPort from 'get-port'
import path from 'path'
import urlUtil from 'url'
import { debug as launcherDebug } from '@packages/launcher/lib/browsers'
import { doubleEscape } from '@packages/launcher/lib/windows'
import FirefoxProfile from 'firefox-profile'
import * as errors from '../errors'
import firefoxUtil from './firefox-util'
import utils from './utils'
import type { Browser, BrowserInstance, GracefulShutdownOptions } from './types'
import os from 'os'
import mimeDb from 'mime-db'
import type { BrowserCriClient } from './browser-cri-client'
import type { Automation } from '../automation'
import { getCtx } from '@packages/data-context'
import { getError, SerializedError } from '@packages/errors'
import type { BrowserLaunchOpts, BrowserNewTabOpts, RunModeVideoApi } from '@packages/types'
import type { RemoteConfig } from 'webdriver'
import type { GeckodriverParameters } from 'geckodriver'
import { WebDriver } from './webdriver'
export class CDPFailedToStartFirefox extends Error {
private static readonly ERROR_NAME = 'CDPFailedToStartFirefox'
constructor (message) {
super(message)
this.name = CDPFailedToStartFirefox.ERROR_NAME
}
public static isCDPFailedToStartFirefoxError (error?: SerializedError): error is CDPFailedToStartFirefox {
return error?.name === CDPFailedToStartFirefox.ERROR_NAME
}
}
const debug = Debug('cypress:server:browsers:firefox')
const debugVerbose = Debug('cypress-verbose:server:browsers:firefox')
// These debug variables have an impact on the 3rd-party webdriver and geckodriver
// packages. To see verbose logs from Firefox, set both of these options to the
// DEBUG variable.
const WEBDRIVER_DEBUG_NAMESPACE_VERBOSE = 'cypress-verbose:server:browsers:webdriver'
const GECKODRIVER_DEBUG_NAMESPACE_VERBOSE = 'cypress-verbose:server:browsers:geckodriver'
// used to prevent the download prompt for the specified file types.
// this should cover most/all file types, but if it's necessary to
// discover more, open Firefox DevTools, download the file yourself
// and observe the Response Headers content-type in the Network tab
const downloadMimeTypes = Object.keys(mimeDb).filter((mimeType) => {
return mimeDb[mimeType].extensions?.length
}).join(',')
const defaultPreferences = {
/**
* Taken from https://github.com/puppeteer/puppeteer/blob/8b49dc62a62282543ead43541316e23d3450ff3c/lib/Launcher.js#L520
* with minor modifications
* BEGIN: Copyright 2017 Google Inc. All rights reserved. Licensed under the Apache License, Version 2.0
*/
// Make sure Shield doesn't hit the network.
'app.normandy.api_url': '',
// Disable Firefox old build background check
'app.update.checkInstallTime': false,
// Disable automatically upgrading Firefox
'app.update.disabledForTesting': true,
// Increase the APZ content response timeout to 1 minute
'apz.content_response_timeout': 60000,
// Prevent various error message on the console
// jest-puppeteer asserts that no error message is emitted by the console
'browser.contentblocking.features.standard': '-tp,tpPrivate,cookieBehavior0,-cm,-fp',
// Enable the dump function: which sends messages to the system
// console
// https://bugzilla.mozilla.org/show_bug.cgi?id=1543115
'browser.dom.window.dump.enabled': true,
// Disable topstories
'browser.newtabpage.activity-stream.feeds.section.topstories': false,
// Always display a blank page
'browser.newtabpage.enabled': false,
// Background thumbnails in particular cause grief: and disabling
// thumbnails in general cannot hurt
'browser.pagethumbnails.capturing_disabled': true,
// Disable safebrowsing components.
'browser.safebrowsing.blockedURIs.enabled': false,
'browser.safebrowsing.downloads.enabled': false,
'browser.safebrowsing.malware.enabled': false,
'browser.safebrowsing.passwords.enabled': false,
'browser.safebrowsing.phishing.enabled': false,
// Disable updates to search engines.
'browser.search.update': false,
// Do not restore the last open set of tabs if the browser has crashed
'browser.sessionstore.resume_from_crash': false,
// Skip check for default browser on startup
'browser.shell.checkDefaultBrowser': false,
// Disable newtabpage
'browser.startup.homepage': 'about:blank',
// Do not redirect user when a milstone upgrade of Firefox is detected
'browser.startup.homepage_override.mstone': 'ignore',
// Start with a blank page about:blank
'browser.startup.page': 0,
// Disable notification banners related to session restoration.
// Any presented banners can result in incorrectly sized screenshots.
'browser.startup.couldRestoreSession.count': 0,
// Do not allow background tabs to be zombified on Android: otherwise for
// tests that open additional tabs: the test harness tab itself might get
// unloaded
'browser.tabs.disableBackgroundZombification': false,
// Do not warn when closing all other open tabs
'browser.tabs.warnOnCloseOtherTabs': false,
// Do not warn when multiple tabs will be opened
'browser.tabs.warnOnOpen': false,
// Disable the UI tour.
'browser.uitour.enabled': false,
// Turn off search suggestions in the location bar so as not to trigger
// network connections.
'browser.urlbar.suggest.searches': false,
// Disable first run splash page on Windows 10
'browser.usedOnWindows10.introURL': '',
// Do not warn on quitting Firefox
'browser.warnOnQuit': false,
// Do not show datareporting policy notifications which can
// interfere with tests
'datareporting.healthreport.about.reportUrl': '',
'datareporting.healthreport.documentServerURI': '',
'datareporting.healthreport.logging.consoleEnabled': false,
'datareporting.healthreport.service.enabled': false,
'datareporting.healthreport.service.firstRun': false,
'datareporting.healthreport.uploadEnabled': false,
'datareporting.policy.dataSubmissionEnabled': false,
'datareporting.policy.dataSubmissionPolicyAccepted': false,
'datareporting.policy.dataSubmissionPolicyBypassNotification': true,
// DevTools JSONViewer sometimes fails to load dependencies with its require.js.
// This doesn't affect Puppeteer but spams console (Bug 1424372)
'devtools.jsonview.enabled': false,
// Disable popup-blocker
'dom.disable_open_during_load': false,
// Enable the support for File object creation in the content process
// Required for |Page.setFileInputFiles| protocol method.
'dom.file.createInChild': true,
// Disable the ProcessHangMonitor
'dom.ipc.reportProcessHangs': false,
// Disable slow script dialogues
'dom.max_chrome_script_run_time': 0,
'dom.max_script_run_time': 0,
// Only load extensions from the application and user profile
// AddonManager.SCOPE_PROFILE + AddonManager.SCOPE_APPLICATION
'extensions.autoDisableScopes': 0,
'extensions.enabledScopes': 5,
// Disable metadata caching for installed add-ons by default
'extensions.getAddons.cache.enabled': false,
// Disable installing any distribution extensions or add-ons.
'extensions.installDistroAddons': false,
// Disabled screenshots extension
'extensions.screenshots.disabled': true,
// Turn off extension updates so they do not bother tests
'extensions.update.enabled': false,
// Turn off extension updates so they do not bother tests
'extensions.update.notifyUser': false,
// Make sure opening about:addons will not hit the network
'extensions.webservice.discoverURL': '',
// Allow the application to have focus even it runs in the background
'focusmanager.testmode': true,
// Disable useragent updates
'general.useragent.updates.enabled': false,
// Always use network provider for geolocation tests so we bypass the
// macOS dialog raised by the corelocation provider
'geo.provider.testing': true,
// Do not scan Wifi
'geo.wifi.scan': false,
// No hang monitor
'hangmonitor.timeout': 0,
// Show chrome errors and warnings in the error console
'javascript.options.showInConsole': true,
// Disable download and usage of OpenH264: and Widevine plugins
'media.gmp-manager.updateEnabled': false,
// Prevent various error message on the console
// jest-puppeteer asserts that no error message is emitted by the console
'network.cookie.cookieBehavior': 0,
// Do not prompt for temporary redirects
'network.http.prompt-temp-redirect': false,
// Disable speculative connections so they are not reported as leaking
// when they are hanging around
'network.http.speculative-parallel-limit': 0,
// Do not automatically switch between offline and online
'network.manage-offline-status': false,
// Make sure SNTP requests do not hit the network
'network.sntp.pools': '',
// Disable Flash.
'plugin.state.flash': 0,
'privacy.trackingprotection.enabled': false,
// CDP is deprecated in Firefox 129 and up.
// In order to enable CDP, we need to set
// remote.active-protocol=2
// @see https://fxdx.dev/deprecating-cdp-support-in-firefox-embracing-the-future-with-webdriver-bidi/
// @see https://github.com/cypress-io/cypress/issues/29713
'remote.active-protocols': 2,
// Enable Remote Agent
// https://bugzilla.mozilla.org/show_bug.cgi?id=1544393
'remote.enabled': true,
// Don't do network connections for mitm priming
'security.certerrors.mitm.priming.enabled': false,
// Local documents have access to all other local documents,
// including directory listings
'security.fileuri.strict_origin_policy': false,
// Do not wait for the notification button security delay
'security.notification_enable_delay': 0,
// Ensure blocked updates do not hit the network
'services.settings.server': '',
// Do not automatically fill sign-in forms with known usernames and
// passwords
'signon.autofillForms': false,
// Disable password capture, so that tests that include forms are not
// influenced by the presence of the persistent doorhanger notification
'signon.rememberSignons': false,
// Disable first-run welcome page
'startup.homepage_welcome_url': 'about:blank',
// Disable first-run welcome page
'startup.homepage_welcome_url.additional': '',
// Disable browser animations (tabs, fullscreen, sliding alerts)
'toolkit.cosmeticAnimations.enabled': false,
'toolkit.telemetry.server': `''`,
// Prevent starting into safe mode after application crashes
'toolkit.startup.max_resumed_crashes': -1,
/**
* END: Copyright 2017 Google Inc. All rights reserved.
*/
'network.proxy.type': 1,
// necessary for adding extensions
'devtools.debugger.remote-enabled': true,
// devtools.debugger.remote-port is set per-launch
'devtools.debugger.prompt-connection': false,
// "devtools.debugger.remote-websocket": true
'devtools.chrome.enabled': true,
'app.update.auto': false,
'app.update.enabled': false,
'browser.displayedE10SNotice': 4,
'browser.download.manager.showWhenStarting': false,
'browser.EULA.override': true,
'browser.EULA.3.accepted': true,
'browser.link.open_external': 2,
'browser.link.open_newwindow': 2,
'browser.offline': false,
'browser.reader.detectedFirstArticle': true,
'browser.selfsupport.url': '',
'browser.tabs.warnOnClose': false,
'devtools.errorconsole.enabled': true,
'extensions.blocklist.enabled': false,
'extensions.checkCompatibility.nightly': false,
'extensions.logging.enabled': true,
'javascript.enabled': true,
'network.http.phishy-userpass-length': 255,
'offline-apps.allow_by_default': true,
'prompts.tab_modal.enabled': false,
'security.fileuri.origin_policy': 3,
'toolkit.networkmanager.disable': true,
'toolkit.telemetry.prompted': 2,
'toolkit.telemetry.enabled': false,
'toolkit.telemetry.rejected': true,
'xpinstall.signatures.required': false,
'xpinstall.whitelist.required': false,
'browser.laterrun.enabled': false,
'browser.newtab.url': 'about:blank',
'dom.report_all_js_exceptions': true,
'network.captive-portal-service.enabled': false,
'security.csp.enable': false,
'webdriver_accept_untrusted_certs': true,
'webdriver_assume_untrusted_issuer': true,
'toolkit.legacyUserProfileCustomizations.stylesheets': true,
// setting to true hides system window bar, but causes weird resizing issues.
'browser.tabs.drawInTitlebar': false,
// allow playing videos w/o user interaction
'media.autoplay.default': 0,
'browser.safebrowsing.enabled': false,
// allow capturing screen through getUserMedia(...)
// and auto-accept the permissions prompt
'media.getusermedia.browser.enabled': true,
'media.navigator.permission.disabled': true,
'dom.min_background_timeout_value': 4,
'dom.timeout.enable_budget_timer_throttling': false,
// allow getUserMedia APIs on insecure domains
'media.devices.insecure.enabled': true,
'media.getusermedia.insecure.enabled': true,
'marionette.log.level': launcherDebug.enabled ? 'Debug' : undefined,
// where to download files
// 0: desktop
// 1: default "Downloads" directory
// 2: directory specified with 'browser.download.dir' (set dynamically below)
'browser.download.folderList': 2,
// prevents the download prompt for the specified types of files
'browser.helperApps.neverAsk.saveToDisk': downloadMimeTypes,
}
const FIREFOX_HEADED_USERCSS = `\
#urlbar:not(.megabar), #urlbar.megabar > #urlbar-background, #searchbar {
background: -moz-Field !important;
color: -moz-FieldText !important;
}`
const FIREFOX_HEADLESS_USERCSS = `\
#urlbar {
height: 0px !important;
min-height: 0px !important;
overflow: hidden !important;
}
#toolbar {
height: 0px !important;
min-height: 0px !important;
overflow: hidden !important;
}
toolbar {
height: 0px !important;
min-height: 0px !important;
overflow: hidden !important;
}
#titlebar {
height: 0px !important;
min-height: 0px !important;
overflow: hidden !important;
display: none;
}
toolbox {
height: 0px !important;
min-height: 0px !important;
overflow: hidden !important;
border: none !important;
}
`
let browserCriClient: BrowserCriClient | undefined
/**
* Clear instance state for the chrome instance, this is normally called in on kill or on exit.
*/
export function clearInstanceState (options: GracefulShutdownOptions = {}) {
debug('clearing instance state')
if (browserCriClient) {
debug('closing remote interface client')
browserCriClient.close(options.gracefulShutdown).catch(() => {})
browserCriClient = undefined
}
}
export async function connectToNewSpec (browser: Browser, options: BrowserNewTabOpts, automation: Automation) {
await firefoxUtil.connectToNewSpec(options, automation, browserCriClient!)
}
export function connectToExisting () {
getCtx().onWarning(getError('UNEXPECTED_INTERNAL_ERROR', new Error('Attempting to connect to existing browser for Cypress in Cypress which is not yet implemented for firefox')))
}
export function connectProtocolToBrowser (): Promise<void> {
throw new Error('Protocol is not yet supported in firefox.')
}
async function recordVideo (videoApi: RunModeVideoApi) {
const { writeVideoFrame } = await videoApi.useFfmpegVideoController({ webmInput: true })
videoApi.onProjectCaptureVideoFrames(writeVideoFrame)
}
export async function open (browser: Browser, url: string, options: BrowserLaunchOpts, automation: Automation): Promise<BrowserInstance> {
const defaultLaunchOptions = utils.getDefaultLaunchOptions({
extensions: [] as string[],
preferences: _.extend({}, defaultPreferences),
args: [
'-new-instance',
// if testing against older versions of Firefox to determine when a regression may have been introduced, uncomment the '-allow-downgrade' flag.
// '-allow-downgrade',
'-start-debugger-server', // uses the port+host defined in devtools.debugger.remote
'-no-remote', // @see https://github.com/cypress-io/cypress/issues/6380
],
})
if (browser.isHeadless) {
defaultLaunchOptions.args.push('-headless')
// we don't need to specify width/height since MOZ_HEADLESS_ env vars will be set
// and the browser will spawn maximized. The user may still supply these args to override
// defaultLaunchOptions.args.push('-width=1920')
// defaultLaunchOptions.args.push('-height=1081')
} else if (os.platform() === 'win32' || os.platform() === 'darwin') {
// lets the browser come into focus. Only works on Windows or Mac
// this argument is added automatically to the linux geckodriver,
// so adding it is unnecessary and actually causes the browser to fail to launch.
defaultLaunchOptions.args.push('-foreground')
}
debug('firefox open %o', options)
const ps = options.proxyServer
if (ps) {
let { hostname, port, protocol } = urlUtil.parse(ps)
if (port == null) {
port = protocol === 'https:' ? '443' : '80'
}
_.extend(defaultLaunchOptions.preferences, {
'network.proxy.allow_hijacking_localhost': true,
'network.proxy.http': hostname,
'network.proxy.ssl': hostname,
'network.proxy.http_port': +port,
'network.proxy.ssl_port': +port,
'network.proxy.no_proxies_on': '',
'browser.download.dir': os.platform() === 'win32' ? doubleEscape(options.downloadsFolder) : options.downloadsFolder,
})
}
const ua = options.userAgent
if (ua) {
defaultLaunchOptions.preferences['general.useragent.override'] = ua
}
const [
marionettePort,
webDriverBiDiPort,
] = await Promise.all([getPort(), getPort()])
defaultLaunchOptions.preferences['marionette.port'] = marionettePort
// NOTE: we get the BiDi port and set it inside of geckodriver, but BiDi is not currently enabled (see remote.active-protocols above).
// this is so the BiDi websocket port does not get set to 0, which is the default for the geckodriver package.
debug('available ports: %o', { marionettePort, webDriverBiDiPort })
const profileDir = utils.getProfileDir(browser, options.isTextTerminal)
// Delete the legacy profile directory if in open mode.
// Cypress does this because profiles are sourced and created differently with geckodriver/webdriver.
// the profile creation method before 13.15.0 will no longer work with geckodriver/webdriver
// and actually corrupts the profile directory from being able to be encoded. Hence, we delete it to prevent any conflicts.
// This is critical to make sure different Cypress versions do not corrupt the firefox profile, which can fail silently.
if (!options.isTextTerminal) {
const doesPathExist = await fs.pathExists(profileDir)
if (doesPathExist) {
await fs.remove(profileDir)
}
}
const [
cacheDir,
extensionDest,
launchOptions,
] = await Promise.all([
utils.ensureCleanCache(browser, options.isTextTerminal),
utils.writeExtension(browser, options.isTextTerminal, options.proxyUrl, options.socketIoRoute),
utils.executeBeforeBrowserLaunch(browser, defaultLaunchOptions, options),
options.videoApi && recordVideo(options.videoApi),
])
if (Array.isArray(launchOptions.extensions)) {
launchOptions.extensions.push(extensionDest)
} else {
launchOptions.extensions = [extensionDest]
}
const profile = new FirefoxProfile({
destinationDirectory: profileDir,
})
// make sure the profile that is ported into the session is destroyed when the browser is closed
profile.shouldDeleteOnExit(true)
debug('firefox directories %o', { path: profile.path(), cacheDir, extensionDest })
const xulStorePath = path.join(profile.path(), 'xulstore.json')
// if user has set custom window.sizemode pref or it's the first time launching on this profile, write to xulStore.
if (!await fs.pathExists(xulStorePath)) {
// this causes the browser to launch maximized, which chrome does by default
// otherwise an arbitrary size will be picked for the window size
// this used to not have an effect after first launch in 'interactive' mode.
// However, since Cypress 13.15.1,
// geckodriver creates unique profile names that copy over the xulstore.json to the used profile.
// The copy is ultimately updated on the unique profile name and is destroyed when the browser is torn down,
// so the values are not persisted. Cypress could hypothetically determine the profile is in use, copy the xulstore.json
// out of the profile and try to persist it in the next created profile, but this method is likely error prone as it requires
// moving/copying of files while creation/deletion of profiles occur, plus the ability to correlate the correct profile to the current run,
// which there are not guarantees we can deterministically do this in open mode.
const sizemode = 'maximized'
await fs.writeJSON(xulStorePath, { 'chrome://browser/content/browser.xhtml': { 'main-window': { 'width': 1280, 'height': 1024, sizemode } } })
}
launchOptions.preferences['browser.cache.disk.parent_directory'] = cacheDir
const userCSSPath = path.join(profileDir, 'chrome')
if (!await fs.pathExists(path.join(userCSSPath, 'userChrome.css'))) {
try {
await fs.mkdir(userCSSPath)
} catch {
// probably the folder already exists, this is fine
}
// if we're headed we change the yellow automation mode url bar back to a normal color
//
// if we're headless we use userCss to 'trick' the browser
// into having a consistent browser window size that's near-fullscreen
// however it unfortunately still leaves 1px of padding at the top)
// without this trick there would be ~74px of padding at the top instead of 1px.
//
// TODO: allow configuring userCss through launchOptions
const userCss = options.browser.isHeadless ? FIREFOX_HEADLESS_USERCSS : FIREFOX_HEADED_USERCSS
await fs.writeFile(path.join(profileDir, 'chrome', 'userChrome.css'), userCss)
}
// resolution of exactly 1280x720
const BROWSER_ENVS = {
MOZ_REMOTE_SETTINGS_DEVTOOLS: '1',
MOZ_HEADLESS_WIDTH: '1280',
MOZ_HEADLESS_HEIGHT: '720',
...launchOptions.env,
}
debug('launching geckodriver with browser envs %o', BROWSER_ENVS)
debug('launch in firefox', { url, args: launchOptions.args })
const geckoDriverOptions: GeckodriverParameters = {
host: '127.0.0.1',
// geckodriver port is assigned under the hood by @wdio/utils
// @see https://github.com/webdriverio/webdriverio/blob/v9.1.1/packages/wdio-utils/src/node/startWebDriver.ts#L65
marionetteHost: '127.0.0.1',
marionettePort,
websocketPort: webDriverBiDiPort,
profileRoot: profile.path(),
// To pass env variables into the firefox process, we CANNOT do it through capabilities when starting the browser.
// Since geckodriver spawns the firefox process, we can pass the env variables directly to geckodriver, which in turn will
// pass them to the firefox process
// @see https://bugzilla.mozilla.org/show_bug.cgi?id=1604723#c20 for more details
spawnOpts: {
stdio: ['ignore', 'pipe', 'pipe'],
env: {
...BROWSER_ENVS,
...process.env,
},
},
jsdebugger: Debug.enabled(GECKODRIVER_DEBUG_NAMESPACE_VERBOSE) || false,
log: Debug.enabled(GECKODRIVER_DEBUG_NAMESPACE_VERBOSE) ? 'debug' : 'error',
logNoTruncate: Debug.enabled(GECKODRIVER_DEBUG_NAMESPACE_VERBOSE),
}
// since we no longer directly control the browser with webdriver, we need to make the browserInstance
// a simulated wrapper that kills the process IDs that come back from webdriver
// @ts-expect-error
let browserInstanceWrapper: BrowserInstance = new EventEmitter()
browserInstanceWrapper.kill = () => undefined
try {
/**
* To set the profile, we use the profile capabilities in firefoxOptions which
* requires the profile to be base64 encoded. The profile will be copied over to whatever
* profile is created by geckodriver stemming from the root profile path.
*
* For example, if the profileRoot in geckodriver is /usr/foo/firefox-stable/run-12345, the new webdriver session
* will take the base64 encoded profile contents we created in /usr/foo/firefox-stable/run-12345/* (via firefox-profile npm package) and
* copy it to a profile created in the profile root, which would look something like /usr/foo/firefox-stable/run-12345/rust_mozprofile<HASH>/*
* @see https://developer.mozilla.org/en-US/docs/Web/WebDriver/Capabilities/firefoxOptions
*/
const base64EncodedProfile = await new Promise<string>((resolve, reject) => {
profile.encoded(function (err, encodedProfile) {
err ? reject(err) : resolve(encodedProfile)
})
})
const newSessionCapabilities: RemoteConfig = {
logLevel: Debug.enabled(WEBDRIVER_DEBUG_NAMESPACE_VERBOSE) ? 'info' : 'silent',
capabilities: {
alwaysMatch: {
browserName: 'firefox',
acceptInsecureCerts: true,
// @see https://developer.mozilla.org/en-US/docs/Web/WebDriver/Capabilities/firefoxOptions
'moz:firefoxOptions': {
profile: base64EncodedProfile,
binary: browser.path,
args: launchOptions.args,
prefs: launchOptions.preferences,
},
// @see https://firefox-source-docs.mozilla.org/testing/geckodriver/Capabilities.html#moz-debuggeraddress
// we specify the debugger address option for Webdriver, which will return us the CDP address when the capability is returned.
'moz:debuggerAddress': true,
// @see https://webdriver.io/docs/capabilities/#wdiogeckodriveroptions
// webdriver starts geckodriver with the correct options on behalf of Cypress
'wdio:geckodriverOptions': geckoDriverOptions,
},
firstMatch: [],
},
}
debugVerbose(`creating session with capabilities %s`, JSON.stringify(newSessionCapabilities.capabilities))
const WD = WebDriver.getWebDriverPackage()
// this command starts the webdriver session and actually opens the browser
// to debug geckodriver, set the DEBUG=cypress-verbose:server:browsers:geckodriver (debugs a third-party patched package geckodriver to enable console output)
// to debug webdriver, set the DEBUG=cypress-verbose:server:browsers:webdriver (debugs a third-party patched package webdriver to enable console output)
// @see ./firefox_automation.md
const webdriverClient = await WD.newSession(newSessionCapabilities)
debugVerbose(`received capabilities %o`, webdriverClient.capabilities)
const browserPID: number = webdriverClient.capabilities['moz:processID']
debug(`firefox running on pid: ${browserPID}`)
const driverPID: number = webdriverClient.capabilities['wdio:driverPID'] as number
debug(`webdriver running on pid: ${driverPID}`)
// now that we have the driverPID and browser PID
browserInstanceWrapper.kill = (...args) => {
// Do nothing on failure here since we're shutting down anyway
clearInstanceState({ gracefulShutdown: true })
debug('closing firefox')
let browserReturnStatus = true
try {
browserReturnStatus = process.kill(browserPID)
} catch (e) {
if (e.code === 'ESRCH') {
debugVerbose('browser process no longer exists. continuing...')
} else {
throw e
}
}
debug('closing geckodriver and webdriver')
let driverReturnStatus = true
try {
driverReturnStatus = process.kill(driverPID)
} catch (e) {
if (e.code === 'ESRCH') {
debugVerbose('geckodriver/webdriver process no longer exists. continuing...')
} else {
throw e
}
}
// needed for closing the browser when switching browsers in open mode to signal
// the browser is done closing
browserInstanceWrapper.emit('exit')
return browserReturnStatus || driverReturnStatus
}
// In some cases, the webdriver session will NOT return the moz:debuggerAddress capability even though
// we set it to true in the capabilities. This is out of our control, so when this happens, we fail the browser
// and gracefully terminate the related processes and attempt to relaunch the browser in the hopes we get a
// CDP address. @see https://github.com/cypress-io/cypress/issues/30352#issuecomment-2405701867 for more details.
if (!webdriverClient.capabilities['moz:debuggerAddress']) {
debug(`firefox failed to spawn with CDP connection. Failing current instance and retrying`)
// since this fails before the instance is created, we need to kill the processes here or else they will stay open
browserInstanceWrapper.kill()
throw new CDPFailedToStartFirefox(`webdriver session failed to start CDP even though "moz:debuggerAddress" was provided. Please try to relaunch the browser`)
}
const cdpPort = parseInt(new URL(`ws://${webdriverClient.capabilities['moz:debuggerAddress']}`).port)
debug(`CDP running on port ${cdpPort}`)
// makes it so get getRemoteDebuggingPort() is calculated correctly
process.env.CYPRESS_REMOTE_DEBUGGING_PORT = cdpPort.toString()
// install the browser extensions
await Promise.all(_.map(launchOptions.extensions, async (path) => {
debug(`installing extension at path: ${path}`)
const id = await webdriverClient.installAddOn(path, true)
debug(`extension with id ${id} installed!`)
return
}))
debug('setting up firefox utils')
browserCriClient = await firefoxUtil.setup({ automation, url, webdriverClient, remotePort: cdpPort, onError: options.onError })
await utils.executeAfterBrowserLaunch(browser, {
webSocketDebuggerUrl: browserCriClient.getWebSocketDebuggerUrl(),
})
} catch (err) {
errors.throwErr('FIREFOX_COULD_NOT_CONNECT', err)
}
return browserInstanceWrapper
}
export async function closeExtraTargets () {
// we're currently holding off on implementing Firefox support in order
// to release Chromium support as soon as possible and may add Firefox
// support in the future
debug('Closing extra targets is not currently supported in Firefox')
}