[Corporate network] Proxy configuration and custom certificates #311
maximouton
started this conversation in
Ideas
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
Corporate often implement access control and security measures that prevent direct access to critical ressources.
In my company we have a proxy server and custom certificates which is not supported by current version of shortest to my knowledge.
I have been through playwright doc and found that it supports it. Here is for instance the configuration for a proxy:
import { defineConfig } from '@playwright/test'; export default defineConfig({ use: { proxy: { server: 'http://myproxy.com:3128', username: 'usr', password: 'pwd' } } });
I think that would be quite useful to be able to have such settings directly in shortest configuration.
Do you agree?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions