
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
Run your own tests in a real browser with selenium then stream the results out.
Run your own tests in a real browser with selenium then stream the results out. Uses leadfoot under the hood.
npm install lightfoot --save-dev
Install and run a Selenium Server.
Add a test target to your scripts of your package.json:
{
"name": "myapp",
"version": "0.1.0",
"scripts": {
"test": "lightfoot --url=http://localhost:3000/test.html"
},
"devDependencies": {
"lightfoot": "^1.0.0"
}
}
Then run the command npm test to run your test URL in a real browser via selenium.
Your test suite can communicate with lightfoot using a global variable stack: window.NOTIFY_LIGHTFOOT
When your tests are done, push an object to the stack:
window.NOTIFY_LIGHTFOOT.push({ type: 'done', passed: 2, failed: 1 })
An example adapter if you're using QUnit:
window.NOTIFY_LIGHTFOOT = []
function notifyLightfoot(type, payload) {
payload.type = type
window.NOTIFY_LIGHTFOOT.push(payload)
}
QUnit.begin(function(data) { notifyLightfoot('begin', data) })
QUnit.done(function(data) { notifyLightfoot('done', data) })
QUnit.testDone(function(data) { notifyLightfoot('testDone', data) })
QUnit.log(function(data) { notifyLightfoot('assertion', data) })
and now lightfoot will know and report more info about the lifecycle of your test suite.
// Create an instance of lightfoot
var lightfoot = require('lightfoot')({
url: 'http://localhost:3000/test.html',
browserName: 'firefox',
varName: 'window.NOTIFY_LIGHTFOOT',
})
// Open a session and run the tests
lightfoot.run(function(code) {
process.exit(code || 0)
})
// Pipe to built in tap reporter or your own reporter
lightfoot.pipe(require('lightfoot/reporters/tap')()).pipe(process.stdout)
There is a built in helper to run mutliple sessions concurrently:
var runAll = require('lightfoot').runAll
// Run each of these sessions with 2 at a time concurrently
runAll([
{ url: 'http://localhost:3000/test.html?module=one.js', browserName: 'chrome' },
{ url: 'http://localhost:3000/test.html?module=two.js', browserName: 'chrome' },
{ url: 'http://localhost:3000/test.html?module=one.js', browserName: 'firefox' },
{ url: 'http://localhost:3000/test.html?module=two.js', browserName: 'firefox' },
], 2, function(codes) {
// Exit with the greatest exit code
process.exit(codes.reduce(function(code, last) {
return (code > last) ? code : last;
}, 0))
})
Install and run Sauce Connect
Specify the Sauce Labs Selenium web driver URL with your username and access key:
require('lightfoot')({
url: 'http://localhost:3000/test.html',
seleniumUrl: 'http://username:accessKey@ondemand.saucelabs.com:80/wd/hub',
}).run(function(code) {
process.exit(code || 0)
})
Now through all kinds of mad science, your tests served locally are ran in a real browser at Sauce Labs and reported to your terminal.
log event to assertion. log is now used to track console.log messages in the browser.done() calls on finishquit() automatically any more to allow for async clean up. User must call quit()Copyright (c) 2014 YouNeedABudget.com Licensed under the MIT license.
FAQs
Run your own tests in a real browser with selenium then stream the results out.
We found that lightfoot demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.