### Manually Triggering Browser Setup for n8n-nodes-playwright (Bash) Source: https://github.com/toema/n8n-playwright/blob/master/README.md This command manually triggers the download and setup of browser binaries for the `n8n-nodes-playwright` node. It is useful if the automatic setup during initial installation fails or if you need to re-initialize the browser environment. ```bash pnpm rebuild n8n-nodes-playwright ``` -------------------------------- ### Installing n8n-nodes-playwright Node (Bash) Source: https://github.com/toema/n8n-playwright/blob/master/README.md This command installs the `n8n-nodes-playwright` community node using pnpm. During installation, it automatically downloads and sets up the necessary browser binaries, which require approximately 1GB of disk space. ```bash pnpm install n8n-nodes-playwright ``` -------------------------------- ### Rebuilding n8n-nodes-playwright After Cache Clean (Bash) Source: https://github.com/toema/n8n-playwright/blob/master/README.md This command rebuilds the `n8n-nodes-playwright` package, which includes re-downloading and setting up browser binaries. It should be executed after cleaning the Playwright browser cache to ensure a fresh and correct installation of the browsers. ```bash pnpm rebuild n8n-nodes-playwright ``` -------------------------------- ### Cleaning Playwright Browser Cache (Bash/CMD) Source: https://github.com/toema/n8n-playwright/blob/master/README.md These commands remove the Playwright browser cache directory. The first command is for Unix-like systems (Linux/macOS), and the second is a comment indicating the equivalent for Windows. This is a crucial troubleshooting step to resolve issues with incorrectly installed browsers. ```bash rm -rf ~/.cache/ms-playwright # or for Windows: rmdir /s /q %USERPROFILE%\AppData\Local\ms-playwright ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.