import { chromium } from "playwright";
const browser = await chromium.launch({
proxy: {
server: "http://YOUR-ISP-HOST:61234",
username: "USER",
password: "PASSWORD",
},
});
const context = await browser.newContext();
const page = await context.newPage();
await page.goto("https://example.com/login");
// Full login flow — IP stays the same throughout
await page.fill("#username", "myaccount");
await page.fill("#password", "mypassword");
await page.click("#submit");
await browser.close();