
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
geckodriver
Advanced tools
An npm wrapper for Mozilla's Geckodriver. It manages to download various (or the latest) Geckodriver versions and provides a programmatic interface to start and stop it within Node.js. Note: this is a wrapper module. If you discover any bugs with Geckodriver, please report them in the official repository.
You can install this package via:
npm install geckodriver
Or install it globally:
npm install -g geckodriver
Note: This installs a geckodriver shell script that runs the executable, but on Windows, selenium-webdriver looks for geckodriver.exe. To use a global installation of this package with selenium-webdriver on Windows, copy or link geckodriver.exe to a location on your PATH (such as the npm bin directory) after installing this package:
mklink %USERPROFILE%\AppData\Roaming\npm\geckodriver.exe %USERPROFILE%\AppData\Roaming\npm\node_modules\geckodriver\geckodriver.exe
Once installed you can start Geckodriver via:
npx geckodriver --port=4444
By default, this package downloads Geckodriver when used for the first time through the CLI or the programmatic interface. If you like to download it as part of the npm install process, set the GECKODRIVER_AUTO_INSTALL environment flag, e.g.:
GECKODRIVER_AUTO_INSTALL=1 npm i
To get a list of available CLI options run npx geckodriver --help. By default, this package downloads the latest version of the driver. If you prefer to have it install a custom Geckodriver version you can define the environment variable GECKODRIVER_VERSION when running in CLI, e.g.:
$ npm i geckodriver
$ GECKODRIVER_VERSION="0.31.0" npx geckodriver --version
geckodriver 0.31.0 (b617178ef491 2022-04-06 11:57 +0000)
The source code of this program is available from
testing/geckodriver in https://hg.mozilla.org/mozilla-central.
This program is subject to the terms of the Mozilla Public License 2.0.
You can obtain a copy of the license at https://mozilla.org/MPL/2.0/.
To set an alternate CDN location for Geckodriver binaries, set the GECKODRIVER_CDNURL like this:
GECKODRIVER_CDNURL=https://INTERNAL_CDN/geckodriver/download
Binaries on your CDN should be located in a subdirectory of the above base URL. For example, /vxx.xx.xx/*.tar.gz should be located under /geckodriver/download above.
Alternatively, you can add the same property to your .npmrc file.
The default location is set to https://github.com/mozilla/geckodriver/releases/download
Use HTTPS_PROXY or HTTP_PROXY to set your proxy URL.
You can import this package with Node.js and start the driver as part of your script and use it e.g. with WebdriverIO.
The package exports a start and download method.
startStarts a Geckodriver instance and returns a ChildProcess. If Geckodriver is not downloaded it will download it for you.
Params: GeckodriverParameters - options to pass into Geckodriver (see below)
Example:
import { start } from 'geckodriver';
import { remote } from 'webdriverio';
import waitPort from 'wait-port';
/**
* first start Geckodriver
*/
const cp = await start({ port: 4444 });
/**
* wait for Geckodriver to be up
*/
await waitPort({ port: 4444 });
/**
* then start WebdriverIO session
*/
const browser = await remote({ capabilities: { browserName: 'firefox' } });
await browser.url('https://webdriver.io');
console.log(await browser.getTitle()); // prints "WebdriverIO · Next-gen browser and mobile automation test framework for Node.js | WebdriverIO"
/**
* kill Geckodriver process
*/
cp.kill();
Note: as you can see in the example above this package does not wait for the driver to be up, you have to manage this yourself through packages like wait-on.
downloadMethod to download a Geckodriver with a particular version. If a version parameter is omitted it tries to download the latest available version of the driver.
Params: string - version of Geckodriver to download (optional)
In case your module uses CJS you can use this package as follows:
const { start } = require('geckodriver')
// see example above
The start method offers the following options to be passed on to the actual Geckodriver CLI.
allowHostsList of host names to allow. By default, the value of --host is allowed, and in addition, if that's a well-known local address, other variations on well-known local addresses are allowed. If --allow-hosts is provided only exactly those hosts are allowed.
Type: string[]
Default: []
allowOriginsList of request origins to allow. These must be formatted as scheme://host:port. By default, any request with an origin header is rejected. If --allow-origins is provided then only exactly those origins are allowed.
Type: string[]
Default: []
binaryPath to the Firefox binary.
Type: string
connectExistingConnect to an existing Firefox instance.
Type: boolean
Default: false
hostHost IP to use for WebDriver server.
Type: string
Default: 0.0.0.0
jsdebuggerAttach browser toolbox debugger for Firefox.
Type: boolean
Default: false
logSet Gecko log level [possible values: fatal, error, warn, info, config, debug, trace].
Type: string
logNoTruncatedWrite server log to file instead of stderr, increases log level to INFO.
Type: boolean
marionetteHostHost to use to connect to Gecko.
Type: boolean
Default: 127.0.0.1
marionettePortPort to use to connect to Gecko.
Type: number
Default: 0
portPort to listen on.
Type: number
profileRootDirectory in which to create profiles. Defaults to the system temporary directory.
Type: string
geckoDriverVersionA version of Geckodriver to start. See https://github.com/mozilla/geckodriver/releases for all available versions, platforms and architecture.
Type: string
customGeckoDriverPathDon't download Geckodriver, instead use a custom path to it, e.g. a cached binary.
Type: string
Default: process.env.GECKODRIVER_PATH
cacheDirThe path to the root of the cache directory.
Type: string
Default: process.env.GECKODRIVER_CACHE_DIR || os.tmpdir()
spawnOptsOptions to pass into the geckodriver process. This can be useful if needing
Firefox to spawn with MOZ_ prefix variables, such as MOZ_HEADLESS_WIDTH.
See https://nodejs.org/api/child_process.html#child_processspawncommand-args-options for
all options.
Type: SpawnOptionsWithoutStdio | SpawnOptionsWithStdioTuple
Default: undefined
If you also look for other browser driver npm wrappers, you can find them here:
For more information on WebdriverIO see the homepage.
The chromedriver npm package provides a Node.js wrapper for the ChromeDriver, which is a standalone server that implements the WebDriver protocol for Chrome. It allows for automated browser testing and interaction with Google Chrome. Compared to geckodriver, chromedriver is specifically designed for Chrome-based browsers.
The selenium-webdriver npm package is a JavaScript implementation of the WebDriver API, which allows for automated browser testing across multiple browsers, including Firefox, Chrome, Safari, and Edge. It provides a higher-level API compared to geckodriver and can be used in conjunction with various browser drivers, including GeckoDriver.
The webdriverio npm package is a WebDriver bindings library for Node.js. It provides a high-level API for interacting with browsers using the WebDriver protocol. WebdriverIO supports multiple browser drivers, including GeckoDriver, and offers additional features like integration with testing frameworks and services. Compared to geckodriver, webdriverio offers a more comprehensive and user-friendly API for browser automation.
FAQs
Mozilla's Geckodriver for Node.js
The npm package geckodriver receives a total of 2,082,711 weekly downloads. As such, geckodriver popularity was classified as popular.
We found that geckodriver demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.