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.
selenium-drivers
Advanced tools
Node.js binding for selenium browser drivers. Sets up your system environment and keeps drivers up to date for various browsers and operating systems.
Node.js binding for selenium browser drivers. Sets up your system environment and keeps drivers up to date for various browsers and operating systems.
var webDriver = require('selenium-webdriver');
var seleniumDrivers = require('selenium-drivers');
seleniumDrivers.init({
browserName: 'chrome',
download: true
}).then(function () {
var driver = new webDriver.Builder()
.forBrowser('chrome')
.build();
driver.get('http://www.google.com/ncr');
});
browserName
: ('chrome' | 'firefox' | 'internet explorer' | 'safari') specify browser namedownload
: (true | false) disable driver download (default: true
)deactivate
: (true | false) deactivate library (useful when running with custom browser capabilities where driver is provided,
eg: for sauceLabs, or browserStack) (default: false
)Browser | Operating Systems |
---|---|
Chrome | macOS_64, Windows7,8,10 |
Firefox | macOS_64, Windows7,8,10 |
Internet Explorer | Windows7,8,10 |
Safari | macOS >= ElCaptain |
FAQs
Node.js binding for selenium browser drivers. Sets up your system environment and keeps drivers up to date for various browsers and operating systems.
We found that selenium-drivers demonstrated a not healthy version release cadence and project activity because the last version was released 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.
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.