Usage

This section provides detailed instructions on how to use the Website Automation library.

Quickstart

  1. Import the library:
    import Browser from './src/Browser';
    
  2. Launch a browser instance:
    const browser = await Browser.launch({ headless: true });
    
  3. Run workflows:
    const workflows = { ... };
    const output = await Workflows.parseNRun(browser, workflows);