Reputation: 63
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
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