Basically, any proxy server (for example from this website https://www.socks-proxy.net/) will not change my IP
const puppeteer = require('puppeteer');
(async () => {
const browser = await puppeteer.launch({
args: ['--proxy-server=http=188.134.1.20:63756'],
ignoreHTTPSErrors: true,
headless: true
})
const page = await browser.newPage()
await page.goto('https://www.purevpn.com/what-is-my-ip', { waitUntil: 'networkidle0' })
// I can see my native IP on a screenshot
await page.screenshot({ path: 'example.png' })
await browser.close()
})()
What am I missing?