-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] Socks5 Support #2131
Comments
Move the |
Thats what i tried thank. For Chromium the Socks setting works, for firefox and webkit not... Any idea why? |
The first-class proxy support should address this! It's coming in the #1914 |
thanks, thats good to hear. Is there an estimated time when the first class proxy support with be available? |
Can we use this with playwright ? |
@ordimans yes you can use it but it uses interceptor meaning you cannot block request anymore etc.. |
New API for using proxy, including SOKCS5 has added in 1.1: doc |
Hello,
i would like to add some socks 5 for new page or newcontext and tried to do it the same way as i did in puppeteer, buts not working.
I tried to do this on both (Launch and Context, but nothing worked). Any idea how i can add an socks5?
Here is my code:
async function start() {
const browser = await firefox.launch({
headless: false,
});
const context = await browser.newContext({
args: ["--proxy-server=socks5://127.0.0.1:9955"],
The text was updated successfully, but these errors were encountered: