
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
Ultron is a JavaScript/NodeJS library for creating automated tests running on the browser of your choice.
var Ultron = require('ultronjs');
var ultron = new Ultron('chrome'); // open Chrome
ultron
.it("should open GitHub via Google")
.describe(function() {
this.open('http://google.com');
this.wait('input[type="text"]').toAppear();
this.fill('input[type="text"]').with('GitHub');
this.$('input[type="text"]').submit();
this.wait('#ires').toAppear(); // results container
this.click('#ires a[href="https://github.com/"]'); // first result
this.wait.until.titleContains('GitHub');
this.wait.for(1000); // wait for just a sec
})
.run()
.then(function() {
ultron.end(); // close browser
});
$ npm install ultronjs
# or
$ npm i -D ultronjs
You also need to download and include in your PATH the driver of the browser of your choice in order to use Ultron.
(work in progress)
FAQs
Automated testing library built on top of Selenium
We found that ultronjs 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.