Skip to content

Commit 6fc680c

Browse files
authored
Merge pull request #333 from HRanjan-11/badeballdebug
added edge support
2 parents 3c50e72 + 2c074b0 commit 6fc680c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

accessibility/plugin/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ const Accessibility = (on, config) => {
2424
on('before:browser:launch', (browser = {}, launchOptions) => {
2525
try {
2626
if (process.env.ACCESSIBILITY_EXTENSION_PATH !== undefined) {
27-
if (browser.name !== 'chrome') {
28-
console.log(`Accessibility Automation will run only on Chrome browsers.`);
27+
if (browser.name !== 'chrome' && browser.name !== 'edge') {
28+
console.log(`Accessibility Automation will run only on Chrome and Edge browsers. But browser used is ` + browser.name);
2929
browser_validation = false;
3030
}
3131
if (browser.name === 'chrome' && browser.majorVersion <= 94) {

0 commit comments

Comments
 (0)