基本上,我按照http://codecept.io/页面get started
部分的描述做了所有事情。
来自 package.json 的 devDependencies:
"codeceptjs": "^0.5.1",
"nightmare": "^2.10.0",
"nightmare-upload": "^0.1.1"
codecept.json:
{
"tests": "./tests/acceptance/*_test.js",
"timeout": 10000,
"output": "./output",
"helpers": {
"Nightmare": {
"url": "http://localhost:8080",
"show": false,
"restart": false
}
},
"include": {},
"bootstrap": false,
"mocha": {},
"name": "vagrant"
}
测试本身也来自教程:
Feature('My first test');
Scenario('test something', (I) => {
I.amOnPage('http://yahoo.com');
I.fillField('p', 'github nightmare');
I.click('Search Web');
I.waitForElement('#main');
I.seeElement('#main .searchCenterMiddle li a');
I.seeElement("//a[contains(@href,'github.com/segmentio/nightmare')]");
I.see('segmentio/nightmare','#main li a');
});
当我运行时,codeceptjs run --steps
我在控制台中得到一个输出:
截图
测试应该通过还是失败并不重要,输出总是相同的。
有谁知道我做错了什么以及如何解决它?