n8n-nodes-browserless
This is an n8n community node. It lets you interact with browserless instance in your n8n
workflows.
browserless is a web-service that allows for remote clients to connect, drive, and execute headless work; all inside of docker. It offers first-class integrations for puppeteer, playwright, selenium's webdriver, and a slew of handy REST APIs for doing more common work. On top of all that it takes care of other common issues such as missing system-fonts, missing external libraries, and performance improvements. We even handle edge-cases like downloading files, managing sessions, and have a fully-fledged documentation site.
If you've been struggling to get Chrome up and running docker, or scaling out your headless workloads, then browserless was built for you.
You've been tried to do browser related tasks with n8n
for example web scraping
, browser automation
, e2e test
. pdf generation
and dont want't to care much about the browser infrastructure and interaction then n8n-node-borowserless
will make your life much easier.
n8n is a fair-code licensed workflow automation platform.
Installation
Operations
Credentials
Compatibility
Usage
Resources
Version history
Highlights
Installation
$ docker run \
--rm \
-p 3000:3000 \
-e "MAX_CONCURRENT_SESSIONS=10" \
-e "TOKEN=YOUR-SECURE-TOKEN" \
browserless/chrome:latest
- Visit your n8n running instance > setttings > community nodes > install
n8n-node-browserless
- Setup borserless credentials url
http://localhost:3000
token YOUR-SECURE-TOKEN
- Adding browserless to your workflow by typing
browserless
into node search - Start using your browserless
Follow the installation guide in the n8n community nodes documentation.
add comunitity noden8n-node-browserless
to your n8n
platform
Operations
Credentials
This node require a browserless url
and token
in order to connect to your browserless
account or out self-hosted borwserless instance.
Compatibility
I develop the node on n8n@0.200.1
. I don't have the change to test on other versions yet.
Usage
- Add
browserless
node into your workflow
- Set up your node
Resources
Version history
0.0.1
Initital release0.2.0
Fixed common issues0.3.0
Fixed #1, implement tests0.4.0
Adding browser options, adding no-cache as default header