@mablhq/mabl-cli 2.63.0 → 2.63.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -183,16 +183,8 @@ class ChromiumBrowserEngine {
|
|
|
183
183
|
chrome.includes('beta'));
|
|
184
184
|
})[0];
|
|
185
185
|
}
|
|
186
|
-
getProxySpec(
|
|
187
|
-
|
|
188
|
-
const server = httpProxy ?? socksProxy;
|
|
189
|
-
if (!server) {
|
|
190
|
-
return;
|
|
191
|
-
}
|
|
192
|
-
const bypass = excludeFromProxy?.length
|
|
193
|
-
? excludeFromProxy.join(',')
|
|
194
|
-
: undefined;
|
|
195
|
-
return { server, bypass };
|
|
186
|
+
getProxySpec(_proxyInfo) {
|
|
187
|
+
return;
|
|
196
188
|
}
|
|
197
189
|
}
|
|
198
190
|
exports.ChromiumBrowserEngine = ChromiumBrowserEngine;
|
|
@@ -80,7 +80,8 @@ class FirefoxBrowserEngine {
|
|
|
80
80
|
const proxyUrl = new URL(proxyInfo.httpProxy);
|
|
81
81
|
proxyPreferences['network.proxy.http'] = proxyUrl.hostname;
|
|
82
82
|
proxyPreferences['network.proxy.http_port'] = Number.parseInt(proxyUrl.port);
|
|
83
|
-
proxyPreferences['network.proxy.
|
|
83
|
+
proxyPreferences['network.proxy.ssl'] = proxyUrl.hostname;
|
|
84
|
+
proxyPreferences['network.proxy.ssl_port'] = Number.parseInt(proxyUrl.port);
|
|
84
85
|
proxyPreferences['network.proxy.share_proxy_settings'] = true;
|
|
85
86
|
proxyPreferences['network.proxy.type'] = 1;
|
|
86
87
|
}
|
|
@@ -152,16 +153,8 @@ class FirefoxBrowserEngine {
|
|
|
152
153
|
'network.proxy.socks_remote_dns': true,
|
|
153
154
|
};
|
|
154
155
|
}
|
|
155
|
-
getProxySpec(
|
|
156
|
-
|
|
157
|
-
const server = httpProxy ?? socksProxy;
|
|
158
|
-
if (!server) {
|
|
159
|
-
return;
|
|
160
|
-
}
|
|
161
|
-
const bypass = excludeFromProxy?.length
|
|
162
|
-
? excludeFromProxy.join(',')
|
|
163
|
-
: undefined;
|
|
164
|
-
return { server, bypass };
|
|
156
|
+
getProxySpec(_proxyInfo) {
|
|
157
|
+
return;
|
|
165
158
|
}
|
|
166
159
|
}
|
|
167
160
|
exports.FirefoxBrowserEngine = FirefoxBrowserEngine;
|