
Security News
pnpm 11.5 Adds Support for Recognizing npm Staged Publishes
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.
selenium-node-webdriver
Advanced tools
Drive PhantomJS 1.8+ from Node.js using Selenium's WebDriver
This repo is simply a pre-built Selenium WebDriver.
npm install selenium-node-webdriver
phantomjs --webdriver=4444 &
sleep 1
node node_modules/selenium-node-webdriver/examples/hello.js
examples/hello.js
var webdriver = require('selenium-node-webdriver');
var driver = new webdriver.Builder().
usingServer('http://localhost:4444/wd/hub').
withCapabilities({
'browserName': 'chrome',
'version': '',
'platform': 'ANY',
'javascriptEnabled': true
}).
build();
driver.get('http://www.google.com').
then(function () {
return driver.findElement(webdriver.By.name('q')).sendKeys('webdriver');
}).
then(function () {
return driver.findElement(webdriver.By.name('btnG')).click();
}).
then(function () {
return driver.getTitle();
}).
then(function (title) {
console.log('Title:', title);
driver.quit();
});
FAQs
Node.js WebDriver client from the Selenium project
The npm package selenium-node-webdriver receives a total of 26 weekly downloads. As such, selenium-node-webdriver popularity was classified as not popular.
We found that selenium-node-webdriver 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.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.