• Stars
    star
    458
  • Rank 95,591 (Top 2 %)
  • Language
    JavaScript
  • License
    Apache License 2.0
  • Created over 11 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An installer and wrapper for Chromedriver.

ChromeDriver

Build app npm

An NPM wrapper for Selenium ChromeDriver.

Building and Installing

npm install chromedriver

Or grab the source and

node ./install.js

What this is really doing is just grabbing a particular "blessed" (by this module) version of ChromeDriver. As new versions are released and vetted, this module will be updated accordingly.

The package has been set up to fetch and run ChromeDriver for MacOS (darwin), Linux based platforms (as identified by Node.js), and Windows. If you spot any platform weirdness, let us know or send a patch.

Force download

By default this package, when installed, will search for an existing Chromedriver binary in your configured temp directory. If found, and it is the correct version, it will simply copy it to your node_modules directory. You can force it always download by configuring it:

npm install chromedriver --chromedriver-force-download

Or add property to your .npmrc file.

chromedriver_force_download=true

Another option is to use PATH variable CHROMEDRIVER_FORCE_DOWNLOAD.

CHROMEDRIVER_FORCE_DOWNLOAD=true npm install chromedriver

Custom binaries url

This allows you to use your own endpoints for metadata and binaries. It is useful in air gapped scenarios or if you have download restrictions, such as firewalls.

This was changed for version 115 and greater (see details), but implemented in this package starting with version 114.0.2. To see the configuration to prior versions check out this README.md at the latest tag where it was using the legacy urls (114.0.1).

For versions >= 115

There are two urls that need to be configured, one for metadata and one for binaries. The one for metadata is the "CDN url", and the one for binaries is the "CDN binaries url". See Chrome for Testing to understand how these urls work.

Npm config: For metadata use chromedriver_cdnurl. The default is https://googlechromelabs.github.io. For binaries use chromedriver_cdnbinariesurl. The default is https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing.

npm install chromedriver --chromedriver_cdnurl=https://npmmirror.com/metadata --chromedriver_cdnbinariesurl=https://npmmirror.com/binaries

Or add these properties to your .npmrc file:

chromedriver_cdnurl=https://npmmirror.com/metadata
chromedriver_cdnbinariesurl=https://npmmirror.com/binaries

Another option is to use the environment variables CHROMEDRIVER_CDNURL and CHROMEDRIVER_CDNBINARIESURL.

CHROMEDRIVER_CDNURL=https://npmmirror.com/metadata CHROMEDRIVER_CDNBINARIESURL=https://npmmirror.com/binaries npm install chromedriver

For versions < 115

There is one url to both metadata and binaries.

To use a mirror of the ChromeDriver binaries use npm config property chromedriver_legacy_cdnurl. Default is https://chromedriver.storage.googleapis.com.

npm install chromedriver --chromedriver_legacy_cdnurl=https://npmmirror.com/mirrors/chromedriver --chromedriver_version=LATEST_114

Or add a property to your .npmrc file:

chromedriver_legacy_cdnurl=https://npmmirror.com/mirrors/chromedriver

Another option is to use the environment variable CHROMEDRIVER_LEGACY_CDNURL.

CHROMEDRIVER_LEGACY_CDNURL=https://npmmirror.com/mirrors/chromedriver npm install chromedriver --chromedriver_version=LATEST_114

Custom binaries file

To get the chromedriver from the filesystem instead of a web request use the npm config property chromedriver_filepath.

npm install chromedriver --chromedriver_filepath=/path/to/chromedriver_mac64.zip

Or add property to your .npmrc file.

chromedriver_filepath=/path/to/chromedriver_mac64.zip

Another option is to use the PATH variable CHROMEDRIVER_FILEPATH

CHROMEDRIVER_FILEPATH=/path/to/chromedriver_mac64.zip

This variable can be used to set either a .zip file or the binary itself, eg:

CHROMEDRIVER_FILEPATH=/bin/chromedriver

Custom download options

Install through a proxy.

npm config set proxy http://[user:pwd]@domain.tld:port
npm config set https-proxy http://[user:pwd]@domain.tld:port

Use different User-Agent.

npm config set user-agent "Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0"

Skipping chromedriver download

You may wish to skip the downloading of the chromedriver binary file, for example if you know for certain that it is already there or if you want to use a system binary and just use this module as an interface to interact with it.

To achieve this you can use the npm config property chromedriver_skip_download.

npm install chromedriver --chromedriver_skip_download=true

Or add property to your .npmrc file.

chromedriver_skip_download=true

Another option is to use the PATH variable CHROMEDRIVER_SKIP_DOWNLOAD

CHROMEDRIVER_SKIP_DOWNLOAD=true

Running

bin/chromedriver [arguments]

And npm will install a link to the binary in node_modules/.bin as it is wont to do.

Running with Selenium WebDriver

require('chromedriver');
var webdriver = require('selenium-webdriver');
var driver = new webdriver.Builder()
  .forBrowser('chrome')
  .build();

(Tested for selenium-webdriver version 2.48.2)

The path will be added to the process automatically, you don't need to configure it. But you can get it from require('chromedriver').path if you want it.

Running via node

The package exports a path string that contains the path to the chromedriver binary/executable.

Below is an example of using this package via node.

var childProcess = require('child_process');
var chromedriver = require('chromedriver');
var binPath = chromedriver.path;

var childArgs = [
  'some argument'
];

childProcess.execFile(binPath, childArgs, function(err, stdout, stderr) {
  // handle results
});

You can also use the start and stop methods:

var chromedriver = require('chromedriver');

args = [
 // optional arguments
];
chromedriver.start(args);
// run your tests
chromedriver.stop();

With the latest version, you can optionally receive a Promise from the chromedriver.start function:

var returnPromise = true;
chromedriver
  .start(args, returnPromise)
  .then(() => {
    console.log('chromedriver is ready');
  });

Note: if your tests are ran asynchronously, chromedriver.stop() will have to be executed as a callback at the end of your tests

Versioning

The NPM package version tracks the version of chromedriver that will be installed, with an additional build number that is used for revisions to the installer. You can use the package version number to install a specific version, or use the setting to a specific version. If there is a new Chromedriver version available which is not yet available as a version of node-chromedriver, the npm command npm run update-chromedriver in this repository can be used to make the required updates to this module, please submit the change as a PR. To always install the latest version of Chromedriver, use LATEST as the version number:

npm install chromedriver --chromedriver_version=LATEST

Or add property to your .npmrc file.

chromedriver_version=LATEST

Another option is to use env variable CHROMEDRIVER_VERSION.

CHROMEDRIVER_VERSION=LATEST npm install chromedriver

You can force the latest release for a specific major version by specifying LATEST_{VERSION_NUMBER}:

CHROMEDRIVER_VERSION=LATEST_80 npm install chromedriver

You can also force a different version of chromedriver by replacing LATEST with a version number:

CHROMEDRIVER_VERSION=75.0.3770.140 npm install chromedriver

Detect ChromeDriver Version

The NPM package version may not be always compatible to your Chrome version. To get the chromedriver that corresponds to the version of Chrome installed, you can use the npm config property detect_chromedriver_version.

npm install chromedriver --detect_chromedriver_version

Or add property to your .npmrc file.

detect_chromedriver_version=true

Another option is to use environment variable DETECT_CHROMEDRIVER_VERSION.

DETECT_CHROMEDRIVER_VERSION=true npm install chromedriver

Note: When the property detect_chromedriver_version is provided, chromedriver_version and chromedriver_filepath properties are ignored.

Include Chromium

If you don't have Chrome installed, you can check for Chromium version instead by setting the argument include_chromium to true.

npm install chromedriver --include_chromium

Or add property to your .npmrc file.

include_chromium=true

Another option is to use environment variable INCLUDE_CHROMIUM.

INCLUDE_CHROMIUM=true npm install chromedriver

Note: The property INCLUDE_CHROMIUM is ignored if the property DETECT_CHROMEDRIVER_VERSION is not used.

A Note on chromedriver

Chromedriver is not a library for NodeJS.

This is an NPM wrapper and can be used to conveniently make ChromeDriver available. It is not a Node.js wrapper.

Supported Node.js versions

We will do our best to support every supported Node.js versions. See nodejs/Release for the current supported versions. You can also view our build scripts and check the versions there.

Contributing

Questions, comments, bug reports, and pull requests are all welcome. Submit them at the project on GitHub.

Bug reports that include steps-to-reproduce (including code) are the best. Even better, make them in the form of pull requests.

We have added VS Code Remote support with containers. If you are on Windows, set git config core.autocrlf input so you don't get git errors.

Author

Giovanni Bassi, with collaboration from lots of good people.

Thanks for Obvious and their PhantomJS project for heavy inspiration! Check their project on Github.

License

Licensed under the Apache License, Version 2.0.

More Repositories

1

speedtest

A way to run speed tests on Docker.
Rust
91
star
2

sourceinject

A source generator for C# that uses Roslyn (the C# compiler) to allow you to generate your dependencies injection during compile time.
C#
77
star
3

poshfiles

My PowerShell script files
PowerShell
37
star
4

bashscripts

My bash profile and scripts.
Shell
36
star
5

xunit-retry

C#
27
star
6

atelies

This is the repository for the Atelies website. It is written in NodeJs. It is now retired.
CoffeeScript
26
star
7

dotfiles

These are my dotfiles.
Shell
23
star
8

FluentMigrator.Runner.Cli

A .NET CLI runner for Fluent Migrator
C#
18
star
9

bulkmail.rs

This app reads a csv file and sends an email with a formatted Handlebars file.
Rust
17
star
10

c4p

Repositório de chamadas de palestras em português
15
star
11

rinhagiggio

C#
14
star
12

mocha-retry

DEPRECATED. Use Mocha's buildint retry.
CoffeeScript
13
star
13

bower-nuget

A package manager for the web - in nuget for Visual Studio
Puppet
13
star
14

customcode

A tool to help run a custom VS Code version for each project.
JavaScript
11
star
15

posh-alias

A better powershell alias than Set-Alias
PowerShell
10
star
16

npm-nuget

THIS PROJECT IS NOT MAINTAINED ANY MORE. Allows you to run npm in Visual Studio using a Nuget pkg.
Batchfile
10
star
17

docker-chrome

A headless chrome that runs in a Docker container
Dockerfile
9
star
18

ICantBelieveItsCrypto

C#
8
star
19

dewordle

C#
8
star
20

posts-template

Use this template to write your posts in markdown
JavaScript
8
star
21

globdir

A library that enables you to glob directories with .NET.
C#
6
star
22

xtr

A tool to crawl and parse web pages
C#
6
star
23

Recast

A project which allows to republish a podcast
HTML
6
star
24

TypeScriptCompiler

A .NET wrapper around the TypeScript compiler written in TypeScript/JavaScript.
JavaScript
6
star
25

jasmine-headless-webkit-dotnet

JavaScript
5
star
26

docker-cloudflared-arm

Dockerfile
4
star
27

nuscripts

My Nushell scripts.
Nushell
4
star
28

grunt-nuget

Shell
3
star
29

QuickRead

JavaScript
3
star
30

killvsnode

Just an app to kill node processes spawn by Visual Studio
C#
3
star
31

wsl-ssh-pageant-installer

PowerShell
2
star
32

TrueCrypt-Service

A TrueCrypt Windows Service to start TC before login.
C#
2
star
33

setup-for-coffeescript-dojo

This is a quick way to setup your environment to run a CoffeeScript dojo
CoffeeScript
2
star
34

vscodefiles

This are my Visual Studio Code files
2
star
35

iluria-export

Rust
1
star
36

dotnet-cross

A tool to cross compile .NET apps to the correct architecture and C library.
C#
1
star
37

notifyhealth

Rust
1
star
38

semvermaxcli

A node CLI to find the largest semver version.
JavaScript
1
star
39

giggio

My profile readme repo.
1
star
40

clinkfiles

These are the files that accompany my Clink installation.
Batchfile
1
star
41

simpleserver

A simple server to run a static backend. Written in C#, cross platform.
C#
1
star
42

FluentMigratorSchemaDumper

C#
1
star
43

multassociais-windowsapps

O Multas Sociais é um site com fins estritamente educacionais e de conscientização da população. As multas sociais criadas aqui são fictícias. Esse é o repositório de uma aplicação feita para Windows 8 e para Windows Phone. O repositório original está também no github em Multas/Sociais.
C#
1
star