Selenium Webdriver.io test runner is not logging the titles of the test specs ("it should...") Selenium Webdriver.io test runner is not logging the titles of the test specs ("it should...") selenium selenium

Selenium Webdriver.io test runner is not logging the titles of the test specs ("it should...")


If you are looking to see full test results with spec details when you run your tests, you can change the default reporter from 'dot' to 'spec'. In your wdio.conf.js file, look for the following line:

reporters: ['dot'],

Change it to:

reporters: ['spec'],

You will probably need to install the spec reporter:

npm install wdio-spec-reporter

There is no need to have your loglevel set to verbose, you can switch it back to silent.