I'm trying to setup selenium-webdriver chrome proxy
const { Builder } = require('selenium-webdriver');
const chrome = require('selenium-webdriver/chrome');
let opt = new chrome.Options().addArguments('--proxy-server=http://xxx%5Cusername:PASSWORD@proxyserver:port');
const driver = new Builder().forBrowser("chrome").setChromeOptions(opt).build();
await driver.get("https://google.com/");
The username and password does not seem to be passing into the proxy.
Any idea where I'm going wrong