'Unable to run cross browser tests in node js

I am new to automation and I am trying to run a .side file on edge or IE. The file runs with no issue on chrome. (selenium-side-runner –c ”browserName=chrome” Google.side

When I try edge I get the below error (selenium-side-runner –c ”browserName=edge” Google.side)

FAIL ./DefaultSuite.test.js ● Test suite failed to run

Do not know how to build driver: edge; did you forget to call usingServer(url)?

When I try IE, an edge window opens with message "This is the initial start page for the WebDriver server." but then I get the below error in the command line window. (selenium-side-runner –c ”browserName='internet explorer'” Google.side)

FAIL ./DefaultSuite.test.js ● Test suite failed to run

SessionNotCreatedError: Unexpected error launching Internet Explorer. IELaunchURL() returned HRESULT 80070012 ('There are no more files.') for URL 'http://localhost:64321/'

I ensured that drivers are properly listed in PATH and restarted my machine multiple times.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source