预计在 chrome 上运行的测试在 Firefox 上会失败?

Is expected that tests that works on chrome, fails on firefox?

我有一个测试通过 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'。 使用暂停(),我看到该字段未在 firefox 中填写,它只是在失去焦点后擦除实际值。 chrome 正常工作

您在 CodeceptJs 遇到的问题是 fillFilled work on chrome, not on firefox。看起来这是一个 Firefox 问题,它在 selenium 3.4.0 和 geckodriver 0.18.0 上运行良好