这是我的测试
Feature('Test');
Scenario('test something', (I) => {
I.amOnPage("");
I.see("Welcome");
I.fillField('j_username', 'xxxxxx');
I.wait(3);
});
这是我的 codeceptjs.JSON
{
"tests": "asd/*_test.js",
"timeout": 10000,
"output": "./output",
"smartwait":"1000",
"helpers": {
"WebDriverIO": {
"url": "http://localhost:8080/xxxx/",
"browser": "chrome"
}
},
"include": {
"I": "./steps_file.js"
},
"bootstrap": false,
"name": "yenideneme"
}
我正在尝试使用带有 Webdriverio 助手的 CodeceptJS 进行端到端测试。连接到服务器并I.see("")
通过。但添加I.fillField()
了这个错误=
test something:
unknown error: call function result missing 'value'
我尝试更新 chrome 和 chromedriver 但没有成功。
和其他项目采取错误=
2) e2e
"after each" hook: finalize codeceptjs for "welcome Page @fristBlank":
unknown error: call function result missing 'value'