我有一个通过chrome的测试,但在Firefox上失败了。
这里是测试:
Scenario.only('Test', (I) => {
I.see('token')
I.click('.fa-edit')
I.wait(1)
I.fillField('input.EditableTitle__input','enkot')
I.see('enkot'); fails here
});
输入的值已经为'token'。 使用pause(),我看到该字段没有被firefox填充,它只是在失去焦点之后擦除了实际值。 在Chrome中,它可以正常工作
答案 0 :(得分:0)
在CodeceptJs,您遇到的问题是fillFilled work on chrome, not on firefox。看来这是Firefox的问题,它在硒3.4.0和geckodriver 0.18.0上都能很好地工作