UNPKG

sasori-crawl

Version:

Sasori is a dynamic web crawler powered by Puppeteer, designed for lightning-fast endpoint discovery.

48 lines (42 loc) 1.05 kB
const {randomUUID} = require('crypto'); /** * The CrawlAction class specifies the action to take on an element * in the DOM (it is an edge in the crawl graph). */ class CrawlAction { static { this.ANCHOR = 'A'; } /** * CrawlAction object constructor * @param {string} element * @param {string} action * @param {string} cssPath * @param {string} actionHash * @param {CrawlState} parentState */ constructor(element, action, cssPath, actionHash, parentState) { this.actionId = randomUUID(); this.element = element; this.action = action; this.cssPath = cssPath; this.actionHash = actionHash; this.parentState = parentState; this.childState = null; } /** * Returns the parentState associated with the CrawlAction. * @return {CrawlState} */ getParentState() { return this.parentState; } /** * Returns the childState associated with the CrawlAction. * @return {CrawlState} */ getChildState() { return this.childState; } } module.exports = CrawlAction;