Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
fix(edge): Use resetUrl about:blank for MicrosoftEdge (#3267)
Browse files Browse the repository at this point in the history
  • Loading branch information
vedharish authored and juliemr committed Jun 14, 2016
1 parent 68d2f73 commit d6910c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ export class Browser {
// PhantomJS produces a "Detected a page unload event" if we use data urls
var browserName = caps.get('browserName');
if (browserName === 'internet explorer' || browserName === 'safari' ||
browserName === 'phantomjs') {
browserName === 'phantomjs' || browserName === 'MicrosoftEdge') {
this.resetUrl = 'about:blank';
}
});
Expand Down

0 comments on commit d6910c1

Please sign in to comment.