Gathering detailed insights and metrics for wdio-dockerized-selenium-service
Gathering detailed insights and metrics for wdio-dockerized-selenium-service
Gathering detailed insights and metrics for wdio-dockerized-selenium-service
Gathering detailed insights and metrics for wdio-dockerized-selenium-service
npm install wdio-dockerized-selenium-service
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
14 Commits
1 Forks
1 Branches
1 Contributors
Updated on Jun 15, 2017
Latest Version
0.0.6
Package Id
wdio-dockerized-selenium-service@0.0.6
Size
12.01 kB
NPM Version
5.0.3
Node Version
8.1.0
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
2
WebdriverIO service to start & stop a docker container running Selenium Standalone server
This is particularly useful for setting up simple CI without needing to run tests against SauceLabs or a self maintained Selenium grid. It assumes that you have docker setup on the machine.
...is quite simple. Install using
npm i --save wdio-dockerized-selenium-service
and then update wdio.conf.js
with
services: ['dockerized-selenium'],
You can additionally update wdio.conf.js
with following options:
1dockerizedSeleniumArgs: { 2 imageName: <string>, 3 enabled: <boolean>, 4 debug: <boolean> 5}
Name of the image. You can see the complete list at https://github.com/SeleniumHQ/docker-selenium.
Default: selenium/standalone-chrome:3.4.0
Whether this service should be used or not. It's useful at times to disable it when running locally, or only enable it when running it as part of ci.
Default: true
Personally I have used yargs
package and setup a flag to enable it only when needed. Update wdio.conf.js
with
dockerizedSeleniumArgs: {
enabled: require('yargs').argv.useDockerizedSelenium || false
}
and then specify --use-dockerized-selenium
as a commmand line argument when running tests.
Enables debug logging.
Default: false
The service setup works even when the test are themselves run inside a docker container. The only requirement then is to make sure the docker container has a docker client and docker socket volume mounted.
The code in this repo is based off of the existing work done for wdio-selenium-standalone-service and wdio-sauce-service
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/14 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
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
71 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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