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.
Pipe scripts to browsers using the Selenium WebDriver protocol.
npm install min-wd
Put a config file name .min-wd
in your project directory:
{
"hostname": "localhost",
"port": 4444,
"browsers": [{
"name": "internet explorer",
"version": "10"
}, {
"name": "chrome"
}]
}
Alternatively, add a webdriver
property with the configs to your
package.json
file.
Assuming my-script.js
contains this:
console.log('Hello %s!', 'browser');
process.exit(0);
Use with browserify:
$ browserify -p min-wd my-script.js
# internet explorer 9:
Hello browser!
# chrome *:
Hello browser!
Export your SauceLabs credentials:
export SAUCE_USERNAME="your-user-name"
export SAUCE_ACCESS_KEY="your-access-key"
Enable SauceLabs in your .min-wd
file:
{
"sauceLabs": true,
"sauceJobName" : "TEST PROJECT",
"BUILD_VAR" : "TRAVIS_BUILD_NUMBER",
"browsers": [...]
}
By default, min-webdriver 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 -p mocaccino -p min-wd my-test.js
If this is your use case, make sure to give Mochify a try.
The default timeout for the log polling script is 10 seconds. If you have long
running test cases that don't print anything for more than 10 seconds, you can
increase the timeout by adding a timeout
property to your config:
"timeout": 20000
Use min-wd programatically with browserify like this:
var browserify = require('browserify');
var minWd = require('min-wd');
var b = browserify();
b.plugin(minWd, { timeout : 0 });
sauceLabs
whether to run tests with saucelabs
. Defaults to false
.hostname
the host to connect to. Defaults to localhost
. If sauceLabs
is
true
, ondemand.saucelabs.com
is used.port
the port to connect to. Defaults to 4444
. If sauceLabs
is true
,
80
is used.timeout
if a script does not respond to log polling calls for this amount
of milliseconds, the test run is aborted. Defaults to 10 seconds.url
the URL to open in each browser. Defaults to no URL.closeOnSuccess
whether to close browsers on success. Defaults to true
.closeOnError
whether to close browsers on error. Defaults to true
.browsers
an array of browser config objects, each with these properties:
name
the name of the browser to launch, e.g. chrome
, firefox
or
internet explorer
version
the browser version to launch. Use *
for any.url
an optional URL to launch for this browsermin-webdriver
injects your script directly into the default page launched by
the Selenium driver. In some cases browsers behave strangely in this context.
Work around this by specifying a URL to a simple web page that is loaded before
running the tests:
{
"browsers": [{
"name": "Internet Explorer",
"version": "9",
"url": "http://my-server/doctype.html"
}]
}
With this content in the doctype.html
:
<!DOCTYPE html><html><head><meta encoding="utf-8"></head><body></body></html>
You can also specify a "url"
for all browser on the root level.
Loading a page before injecting the scripts is solving these issues:
JSON
because the Selenium default page makes
IE switch to quirks modeSECURITY_ERR: DOM Exception 18
because setting cookies is not
allowed for file://
URLsaccess to the Indexed Database API is denied in this context
MIT
2.5.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.