New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

all4s

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

all4s

A simple web crawling automation tool.

  • 0.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

ALL4S (All Fours) 🥾

A simple web crawling automation tool.

This package simplifies and streamlines a puppeteer instance in order to make web crawling and automation a touch easier.

npm install all4s

All promises resolve to 'null' if no elements are found. This is done by design in order to make sure automation scripts don't throw, you can handle a null return easily too :)

Getting Started 🎬

  1. Import all4s
import { ALL4S } from "all4s";
  1. Create an ALL4S instance within an async scope and kick it off ⚽.
(async () => {
    // Setup our new web crawler.
    const allFours = new ALL4S({
        startPage: 'https://www.haydncomley.com/', // The page we initially load
        debug: true, // [OPTIONAL] Output actions to the console & show an on-screen event queue when not in 'headless' mode.
        debugHideConsole: false, // [OPTIONAL] Show the on-screen queue but suppress console output
        browserOptions: {} // [OPTIONAL] Parameters to be passed down to puppeteer
    });

    // Starts the browser instance.
    await allFours.doStart();
})();
  1. Start automating your web crawler.
// Find a button & click on it.
const aButton = await allFours.getAnElement('#my-button');
await allFours.eventClick(cookieButton);

// Find an input & type into it.
const anInput = await allFours.getAnElement('#my-input');
await allFours.eventType(anInput, 'This is some text input.');

Advanced Extras ⚙️

Get element by text 📝

  • You can get an element by searching for it's text content if other selectors are no use.
// This searches for a <button/> element with the specified text inside.
const cookieButton = await allFours.getAnElementThatContainsText('button', 'I Accept');
await allFours.eventClick(cookieButton);
  • You can also specify how many times this text needs to show up for certain edge cases.
// This will only match a <p> tag that has the word 'yes' within it 3 times.
const confirmationParagraph = await allFours.getAnElementThatContainsText('p', 'yes', 3);

Wait for element to show up ⌚

  • You can wait until an element shows up and then have it returned. Either wait eternally or set a timeout.
// This will wait forever until an element is found.
const cookiePopup = await allFours.doWaitFor(() => allFours.getAnElement('#cookie-consent'));
// This will return 'null' after 5 seconds if no element is found.
const cookiePopup = await allFours.doWaitFor(() => allFours.getAnElement('#cookie-consent'), 5000);
// Example: Wait until the a cookie consent button shows up and then dismiss it by clicking.
allFours.doWaitFor(() => allFours.getAnElementThatContainsText('button', 'I Accept')).then((button) => {
    allFours.eventClick(button)
});

Get Element Value / Property / Attribute 👗

  • You can grab properties from elements with this simple api.
// The first value 'String' defines the type of the object we are getting. The second 'HTMLAnchorElement' allows for typed values in our function for typescript but any string is valid.
const href = await allFours.getValueFromElement<String, HTMLAnchorElement>(element, 'href');

Delay Executing / Sleep 🦥

  • All actions have waiting built in, but you can always wait some more if needed.
// Wait for 1 second before continuing.
await allFours.doDelay(1000);

Navigation 🗺

  • Navigate to another page.
// Navigates and then waits for the page to load.
await allFours.doNavigation('https://haydncomley.com');

Keywords

FAQs

Package last updated on 22 Jun 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc