Selenium Standalone Server Installation



WebdriverIO works under the roof of Selenium. To establish communication with the browser, we are required to install the Selenium standalone server.

To install Selenium standalone server, we have to run the following command −

npm install selenium-standalone

Or,

npm i selenium-standalone.

The following screen will appear on your computer −

Install Selenium

After the command has been executed successfully, the Selenium standalone server package version installed gets reflected within the package.json file.

Advertisements