Skip to content

Commit

Permalink
fix: disable MyDomainResolver because of issues with Enhanced Domains
Browse files Browse the repository at this point in the history
  • Loading branch information
amtrack committed Oct 16, 2022
1 parent a6900c0 commit d4bb221
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/browserforce.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ export class Browserforce {
let page;
const result = await pRetry(
async () => {
await this.resolveDomains();
// there seems to be an issue with Enhanced Domains
// await this.resolveDomains();
page = await this.browser.newPage();
page.setDefaultNavigationTimeout(
parseInt(process.env.BROWSERFORCE_NAVIGATION_TIMEOUT_MS, 10) || 90000
Expand Down

0 comments on commit d4bb221

Please sign in to comment.