Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Pipes stdin to all configured browsers using the Selenium WebDriver protocol.
Repository: https://github.com/mantoni/min-webdriver
npm install min-wd -g
Put a config file name .min-wd
in your project directory:
{
"hostname": "localhost",
"port": 4444,
"browsers": [{
"name": "internet explorer",
"version": "9"
}, {
"name": "chrome"
}]
}
Assume my-script.js
contains this:
console.log('Hello %s!', 'browser');
process.exit(0);
Use with browserify:
$ browserify -t min-wd my-script.js | min-wd
= internet explorer 9 ========================================================
Hello browser!
= chrome * ===================================================================
Hello browser!
By default, min-wd will folk a new browser and inject the given script straight
away without loading any web page. If you want to run your test cases in the
context of a web page, you can configure the start page in the .min-wd
file:
{
"url": "http://my-test-page"
}
Testing with Mocha requires mocaccino:
$ browserify -t min-wd my-test.js | mocaccino -b -r list | min-wd
This might cause trouble with IE where it
reports it can't find JSON
. The Selenium default page makes IE switch to
quirks mode. To avoid this load a web page as described above.
Here is a minimal node server that does the job:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, { 'Content-Type': 'text/html' });
res.end('<!DOCTYPE html><html><head><meta encoding="utf-8"></head>'
+ '<body></body></html>');
}).listen(4445);
MIT
0.3.0
FAQs
Minimal WebDriver that pipes stdin to browsers
The npm package min-wd receives a total of 698 weekly downloads. As such, min-wd popularity was classified as not popular.
We found that min-wd 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
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.