Skip to content

Commit

Permalink
fix: Fix browser name to MSEdge to match Selenium grid
Browse files Browse the repository at this point in the history
This will allow Shaka Player screenshot tests to work the same locally or in a remote grid
  • Loading branch information
joeyparrish committed Feb 3, 2022
1 parent 0259b0c commit e72c8ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ const LocalWebDriverChrome = function(baseBrowserDecorator, logger) {

const LocalWebDriverEdge = function(baseBrowserDecorator, logger) {
LocalWebDriverBase.call(this,
'Edge', 'msedgedriver', (port) => ['--port=' + port],
'MSEdge', 'msedgedriver', (port) => ['--port=' + port],
baseBrowserDecorator, logger);
};

Expand Down

0 comments on commit e72c8ed

Please sign in to comment.