Getting 'puppeteer err_no_supported_proxies socks5h' Error – How to Fix or Work Around It?

14 Replies, 785 Views

Man, I feel you. That puppeteer err_no_supported_proxies 'socks5h' error is a nightmare. I ended up ditching Puppeteer for Playwright for this exact reason. Playwright has native SOCKS5 support, and it’s been way smoother for me.

If you’re open to switching, here’s how you can set it up:
```javascript
const { chromium } = require('playwright');
const browser = await chromium.launch({ proxy: { server: 'socks5://your-proxy-address:port' } });
```
It’s worth a shot if Puppeteer keeps giving you trouble.

Messages In This Thread



Users browsing this thread: 1 Guest(s)