Gathering detailed insights and metrics for wdio-chromedriver-service
Gathering detailed insights and metrics for wdio-chromedriver-service
Gathering detailed insights and metrics for wdio-chromedriver-service
Gathering detailed insights and metrics for wdio-chromedriver-service
wdio-electron-service
WebdriverIO service to enable Electron testing
@coorpacademy/wdio-chromedriver-service
[](https://www.npmjs.com/package/@coorpacademy/wdio-chromedriver-service) [
JavaScript (1.51%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
35 Stars
347 Commits
26 Forks
10 Watchers
4 Branches
23 Contributors
Updated on Mar 30, 2025
Latest Version
8.1.1
Package Id
wdio-chromedriver-service@8.1.1
Unpacked Size
18.94 kB
Size
6.63 kB
File Count
23
NPM Version
9.3.1
Node Version
18.14.0
Published on
Feb 14, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
4
3
This service helps you to run ChromeDriver seamlessly when running tests with the WDIO testrunner. It uses the chromedriver NPM package that wraps the ChromeDriver for you.
Note: this service does not require a Selenium server, but uses ChromeDriver to communicate with the browser directly.
Obviously, it only supports:
1capabilities: [{ 2 browserName: 'chrome' 3}]
The easiest way is to keep wdio-chromedriver-service
as a devDependency in your package.json
.
1{ 2 "devDependencies": { 3 "wdio-chromedriver-service": "^8.0.0" 4 } 5}
You can simple do it by:
1npm install wdio-chromedriver-service --save-dev
Note: You have to install chromedriver separately, as it's a peerDependency of this project, and you're free to choose what version to use. Depending of which version of Chrome you have installed on your system you should install the same version of chromedriver
. Install it using:
1npm install chromedriver --save-dev 2# if you have Chrome 104 installed on your machine do 3npm install chromedriver@104 --save-dev
Instructions on how to install WebdriverIO
can be found here.
By design, only Google Chrome is available (when installed on the host system). In order to use the service you need to add chromedriver
to your service array:
1// wdio.conf.js 2export.config = { 3 outputDir: 'all-logs', 4 // ... 5 services: [ 6 ['chromedriver', { 7 logFileName: 'wdio-chromedriver.log', // default 8 outputDir: 'driver-logs', // overwrites the config.outputDir 9 args: ['--silent'] 10 }] 11 ], 12 // ... 13};
The port on which the driver should run on
Example: 7676
Type: number
The path on which the driver should run on
Example: /
Type: string
The protocol on which the driver should use
Example: http
Type: string
The protocol on which the driver should use
Example: localhost
Type: string
The startup timeout in ms, it checks if the port is open before starting ChromeDriver and then checks again if the it is closed after starting it.
Example: 10000
Type: number
The path where the output of the ChromeDriver server should be stored (uses the config.outputDir by default when not set).
Example: driver-logs
Type: string
The name of the log file to be written in outputDir
.
Example: wdio-chromedriver.log
Type: string
To use a custome chromedriver different than the one installed through "chromedriver npm module", provide the path.
Example: /path/to/chromedriver
(Linux / MacOS), ./chromedriver.exe
or d:/driver/chromedriver.exe
(Windows)
Type: string
For more information on WebdriverIO see the homepage.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
Found 0/1 approved changesets -- score normalized to 0
Reason
project is archived
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
34 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More