Hi,
On BrowserStack, you can use a PAC file with their "network tunnel" like tool, to route according to the website either DIRECT or define another proxy.
For example, it will allow to use DIRECT for intranet websites, but route to the corporate external proxy for Internet websites.
That would solve the issue of accessing Internet and Intranet websites when using network tunnel.
PAC file example, anonymized :
function FindProxyForURL(url, host) {
if (isPlainHostName(host) || dnsDomainIs(host, ".intranet")) {
return "DIRECT";
} if (isPlainHostName(host) || dnsDomainIs(host, ".company.tld")) {
return "DIRECT";
} if (isPlainHostName(host) || dnsDomainIs(host, ".corp.net")) {
return "DIRECT";
} else {
return "PROXY OUTPROXY:3131";
}
}
by: Olivier B. | about a month ago | Tests Execution
Comments
Thank you for submitting this idea. We will take this into consideration as we build our roadmap and follow up as necessary.