My automated tests use a proxy to ensure that the browser is not ip-authenticated. I need to do the same for the xk6-browser tests.
i used an example i found using playwright that supposedly launches it with proxy, but it does not work
here is the example of the code i used(scrubbed proprietary urls)
const browser = chromium.launch({ headless: false, proxy: {
server: 'http://apacheproxy02.my.example.org:80',
}, });
const page = browser.newPage();
Is this not supported yet ?