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.
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.
