File tree 3 files changed +3
-3
lines changed
puppeteer-scraper/src/internals
web-scraper/src/internals 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ export class CrawlerSetup implements CrawlerSetupOptions {
185
185
launchContext : {
186
186
useChrome : this . input . useChrome ,
187
187
launchOptions : {
188
- ignoreHTTPSErrors : this . input . ignoreSslErrors ,
188
+ acceptInsecureCerts : this . input . ignoreSslErrors ,
189
189
defaultViewport : DEFAULT_VIEWPORT ,
190
190
devtools : this . devtools ,
191
191
args,
Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ export class CrawlerSetup implements CrawlerSetupOptions {
228
228
launchContext : {
229
229
useChrome : this . input . useChrome ,
230
230
launchOptions : {
231
- ignoreHTTPSErrors : this . input . ignoreSslErrors ,
231
+ acceptInsecureCerts : this . input . ignoreSslErrors ,
232
232
defaultViewport : DEFAULT_VIEWPORT ,
233
233
args,
234
234
headless : this . input . headless ,
Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ export class ProxyConfiguration extends CoreProxyConfiguration {
305
305
return this . _handleTieredUrl (
306
306
sessionId ?? cryptoRandomObjectId ( 6 ) ,
307
307
options ,
308
- ) . proxyUrl ;
308
+ ) . proxyUrl ?? undefined ;
309
309
}
310
310
311
311
return this . composeDefaultUrl ( sessionId ) ;
You can’t perform that action at this time.
0 commit comments