Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
wdio-edgedriver-service
Advanced tools
This service helps you to run Microsoft WebDriver (Edge) seamlessly when running tests with the WDIO testrunner.
It does not require a Selenium server, but uses the Microsoft WebDriver that is installed as a Windows Feature on Demand or as edgedriver
NPM package for Chromium-based Edge.
Example capabilities:
capabilities: [{
browserName: 'MicrosoftEdge'
}]
npm install wdio-edgedriver-service --save-dev
By design, only Edge is available. In order to use the service you need to add edgedriver
to your service array:
// wdio.conf.js
export.config = {
// MANDATORY: Add edgedriver to service array.
// Default: empty array
services: [
'edgedriver',
// service options
{
outputDir: './logs',
// see https://github.com/webdriverio-community/node-edgedriver#options for more
// options that can be passed into EdgeDriver directly
edgedriverOptions: {
verbose: true
}
}
],
};
outputDir
The path where the output of the Safaridriver server should be stored (uses the config.outputDir
by default when not set).
Type: string
logFileName
The name of the log file to be written in outputDir
. Requires outputDir
to be set in WebdriverIO config or as service option.
Type: string
Default: wdio-edgedriver-service-<cid>.log
edgedriverOptions
Options that are passed into EdgeDriver. See driver docs for more information.
Type: EdgedriverParameters
Default: {}
For more information on WebdriverIO see the homepage.
FAQs
WebdriverIO service to start & stop EdgeDriver
We found that wdio-edgedriver-service demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.