Parthan P Vasu
Parthan P Vasu

Reputation: 63

WebdriverIO: Dot ('.') is not recognized as an internal, or external command

I have been facing this error when configuring the WebdriverIO test-runner:

'.' is not recognized as an internal or external command

The command given on the WebdriverIO site is: ./node_modules/.bin/wdio --help, but running it in cmd shows the previously mentioned error.

How can I fix this?

Upvotes: 1

Views: 5226

Answers (1)

LMokrane
LMokrane

Reputation: 826

The command on the website is for Linux (or mac) environment.

It looks like you're on Windows so you have to type node_modules\.bin\wdio --help

Upvotes: 6

Related Questions