We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
is it not possible to use no proxy with 'per-context' lauched instance?
I am getting "Exception has occurred: Error: NS_ERROR_UNKNOWN_PROXY_HOST"
if i do
browser = await firefox.launch({ headless: false, proxy: { server: "per-context" }, timeout: 0, }); context = await browser.newContext();
The text was updated successfully, but these errors were encountered:
It is not. But you can specify default proxy instead of the per-context string.
Sorry, something went wrong.
Yeah but i need to launch a new window everytime i don't use proxy. i would prefer to use/not use proxy inside the context.
Can you launch one browser with per-proxy and another browser w/o proxy and just keep them running? That way you only need to launch 2 browsers.
Its a workaround but it should work.
No branches or pull requests
is it not possible to use no proxy with 'per-context' lauched instance?
I am getting "Exception has occurred: Error: NS_ERROR_UNKNOWN_PROXY_HOST"
if i do
The text was updated successfully, but these errors were encountered: