javascript – WebDriver.io没有控制台输出
作者:互联网
我使用以下堆栈来运行几个测试:
NodeJs
Selenium standalone
geckodriver thought I use chrome
webdriver.io
mocha
chai
毕竟我的first_test.js是:
describe ('Website url test ', () => {
it('should have a title ', () => {
browser.call((done) => {
browser.url('http://webdriver.io');
var title = browser.getTitle();
expect(title).to.be.equal('WebdriverIO - WebDriver bindings for Node.js')
done();
})
})
控制台中的输出是:控制台输出不正确
但对于通过测试也应如此:正确的控制台输出
Mocha中的内容是否应该更改,以便通过测试会产生相同的光学结果?
解决方法:
这种行为是由记者选择的(在我的案例中为dot).
我改为spec,现在我的输出非常详细.
标签:javascript,selenium,mocha,webdriver-io 来源: https://codeday.me/bug/20190823/1699388.html