npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-browseract-workflows

v1.0.6

Published

An n8n node for the BrowserAct API by MadameAi

Readme

Banner image


n8n Community Node – BrowserAct

This is an n8n community node for the BrowserAct API, allowing you to automate browserAct-based workflows directly within n8n.

This node allows you to start, monitor, and manage your BrowserAct tasks, including support for dynamic parameters and intelligent polling to wait for tasks to complete.

Installation

  1.  Go to Settings > Community Nodes in your n8n instance.
  2.  Select Install.
  3.  Enter n8n-nodes-browseract-workflows in the search box.
  4.  Click the Install button to install the node.

Configuration

  1.  Go to the Credentials section in your n8n sidebar.
  2.  Click "Add Credential" and search for "BrowserAct API".
  3.  Enter your API Key from the BrowserAct integrations page.
  4.  Click Save.

Usage

This node provides two ways to run a workflow and get its results.

Easiest Method (Single Node)

The simplest way to run a workflow and wait for its result is to use the built-in combined operation. This is the recommended method for most use cases.

  1. Add a BrowserAct node.
  2. Set the Operation to "Run Workflow and Get Data".
  3. Choose your Workflow Name or ID from the list.
  4. Fill in the Input Parameters.
  5. (Optional) Adjust the Polling Interval and Maximum Wait Time as needed.

This single node will start the task, poll its status, and only return the final data once the task is finished or failed, ensuring your n8n workflow pauses until the browserAct work is complete.

Advanced Method (Two Nodes)

You can also separate the "start" and "wait" logic, which can be useful for more complex workflows (e.g., if you want to run other actions while the task is polling).

  1. Start a Task: Add a BrowserAct node and select the Run Task operation. Choose your workflow and fill in the parameters. This node will immediately output the id of the task.
  2. Wait for Completion: Add a second BrowserAct node.
    • Select the Get Task operation.
    • For the Task ID field, use an expression to get the ID from the first node: ={{ $json.id }}.
    • Enable the "Wait for Task to Finish" option.

Operations

  • Run Workflow and Get Data: (Recommended) Starts a task and waits (polls) for it to finish, returning the final data in a single step.
  • Run Task: Starts a new workflow task and immediately returns its ID. (Use this with Get Task for the two-node pattern).
  • Get Task: Retrieves detailed information about a task. Includes a polling option (Wait for Task to Finish) to wait for completion.
  • Get Task Status: Quickly returns only the current status of a task.
  • Stop Task: Terminates a running task.
  • List Tasks: Returns a paginated list of all tasks.
  • List Workflows: Returns a paginated list of all your available workflows.
  • Get Workflow: Retrieves details and required parameters for a specific workflow.

Resources

License

MIT