可以在chrome上运行的测试在Firefox上失败吗?

时间:2018-10-17 17:15:21

标签: selenium webdriver-io codeceptjs

我有一个通过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中,它可以正常工作

  • Codeceptjs 1.4.3
  • webdriverio 4.13.2
  • 硒6.15.3
  • firefox 62.0.3

1 个答案:

答案 0 :(得分:0)

在CodeceptJs,您遇到的问题是fillFilled work on chrome, not on firefox。看来这是Firefox的问题,它在硒3.4.0和geckodriver 0.18.0上都能很好地工作