@buttercup/locust
TypeScript icon, indicating that this package has built-in type declarations

2.3.1 • Public • Published

Locust

Login form location utility

Buttercup Tests npm version

About

Locust helps find login forms by searching the DOM for common login form elements. It processes a page and returns targets which can be used for automating logins.

Installation

Run npm install @buttercup/locust --save-dev to install as a dev dependency - as it's designed to be included in a build system, such as with Webpack, it does not need to be a normal dependency.

Types are included.

Usage

Locust is an ESM-only library, so you must include it in another project and use a bundler, such as Webpack, to build it for the browser.

Locust exports a couple of useful methods, but the one which provides the most simple approach to logging in is getLoginTarget:

import { getLoginTarget } from "@buttercup/locust";

getLoginTarget().login("myUsername", "myPassword");

The example above enters the username and password in the best form found on the page and then proceeds to submit that form (logging the user in).

To find all forms on a page, use the getLoginTargets method instead, which returns an array of login targets. You can then sort through these to find all the different login forms that may exist.

In the case that you don't want to automatically log in, but still enter the details, you can use the following example:

const target = getLoginTarget();
await target.fillUsername("myUsername");
await target.fillPassword("myPassword");

You can fill in OTPs using the following:

await target.fillOTP("123456");

Note that getLoginTarget may return null if no form is found, so you should check for this eventuality.

Filtering

You can filter input/form elements picked up by getLoginTarget and getLoginTargets by passing an element validator callback as the second parameter:

const target = getLoginTarget(
    document,
    () => true
);

Where the callback follows this format:

(feature: LoginTargetFeature, element: HTMLElement) => boolean;

Return false to ignore the element and true to include it. Defaults to true for all elements.

Events

Locust login targets will emit events when certain things happen. To listen for changes to the values of usernames and passwords on forms simply attach event listeners:

const target = getLoginTarget();
target.on("valueChanged", info => {
    if (info.type === "username") {
        console.log("New username:", info.value);
    }
});
// `type` can be "username" or "password"

Login targets subclass EventEmitter, so you can use all other methods provided by their implementation.

You can also listen to form submission:

const target = getLoginTarget();
target.once("formSubmitted", ({ source }) => {
    // `source` will either be "submitButton" or "form"
});

Development

You can run npm run dev to generate and watch-files to develop Locust. To create a script that outputs dev information, run npm run dev:inject and inject the provided script snippet into pages to test Locust. It won't work all of the time if the Buttercup browser extension is running, nor will it work in consecutive executions.

To run on HTTPS pages consider using a Chrome extension like Disable Content Security Policy, which will allow injection of local scripts.

Readme

Keywords

none

Package Sidebar

Install

npm i @buttercup/locust

Weekly Downloads

5

Version

2.3.1

License

MIT

Unpacked Size

40.7 kB

Total Files

23

Last publish

Collaborators

  • perrymitchell
  • sallar