Skip to content

Instantly share code, notes, and snippets.

@diemol
Last active November 21, 2025 11:57
Show Gist options
  • Select an option

  • Save diemol/9ef7fed6e0650953d9100122ed8accc4 to your computer and use it in GitHub Desktop.

Select an option

Save diemol/9ef7fed6e0650953d9100122ed8accc4 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
// Force ONLY www.selenium.dev through a fake (non-existent) proxy
if (dnsDomainIs(host, "www.selenium.dev")) {
return "PROXY 127.0.0.1:9999";
}
// Everything else works normally
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment