
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
@expressen/tallahassee
Advanced tools
Test your client scripts in a headless browser.
Supports just about everything.
"use strict";
const Browser = require("@expressen/tallahassee");
const Script = require("@bonniernews/wichita");
const { app } = require("../app/app.js");
describe("Tallahassee", () => {
describe("navigateTo()", () => {
it("navigates to url", async () => {
await new Browser(app).navigateTo("/");
});
it("throws if not 200", async () => {
try {
await new Browser(app).navigateTo("/404");
} catch (e) {
var err = e; // eslint-disable-line no-var
}
expect(err).to.be.ok;
});
it("unless you override status code", async () => {
const browser = await new Browser(app).navigateTo("/404", null, 404);
expect(browser.document.getElementsByTagName("h1")[0].innerText).to.equal("Apocalyptic");
});
});
describe("run script", () => {
it("run es6 script sources with @bonniernews/wichita", async () => {
const browser = await new Browser(app).navigateTo("/", { cookie: "_ga=1" });
await new Script("./app/assets/scripts/main.js").run(browser.window);
expect(browser.document.cookie).to.equal("_ga=1");
expect(browser.document.getElementsByClassName("set-by-js")).to.have.length(1);
});
it("again", async () => {
const browser = await new Browser(app).navigateTo("/");
await new Script("./app/assets/scripts/main.js").run(browser.window);
expect(browser.document.cookie).to.equal("");
expect(browser.document.getElementsByClassName("set-by-js")).to.have.length(0);
});
});
});
May we suggest you to use Wichita, the Tallahassee sidekick. It can be found here https://www.npmjs.com/package/@bonniernews/wichita
If overriding timers on window, e.g. setTimeout
it can be a good idea to make them asynchronous since they tend to be recurring.
Example:
browser.window.setTimeout = function mySetTimeout(fn, ms, ...args) {
process.nextTick(fn, ...args);
};
16.0.4
Window
extends EventTarget
CustomEvent
, forward optionspreventDefault()
respects cancelable
FAQs
Lightweight client testing framework
We found that @expressen/tallahassee demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 16 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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.