This is my test.
Feature('Test'); Scenario('test something', (I) => { I.amOnPage(""); I.see("Welcome"); I.fillField('j_username', 'xxxxxx'); I.wait(3); });
This is my .JSON code
{ "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" }
I am trying to use CodeceptJS with the Webdriverio helper for end-to-end tests. Connect to the server and pass I.see("") . But added I.fillField() took this error =
test something: unknown error: call function result missing 'value'
I am trying to update chrome and chromedriver but it did not work.
And another completed project Error = 2) e2e "after each" hook: finalize codeceptjs for "welcome Page @fristBlank": unknown error: call function result missing 'value'

source share