import { chromium } from "playwright";
const browser = await chromium.launch({
proxy: {
server: "http://isp.proxies.fo:61234",
username: "adminywsve",
password: "jwqcoz4lfm",
},
});
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();