当对chai和chai-as-promised使用proractor.js测试时,不会填充选择器的选项

时间:2018-07-12 02:00:29

标签: javascript reactjs protractor chai

在我的测试文件中,我进行了以下测试。 我使用chrome开发人员工具验证了我确实有一个名为color的选择元素,并且它有4个选项。

it('should have at least one color in the list', async () => {
        let options = $$('select[name="colors"] option');
        await expect(options.count()).to.eventually.be.above(0);
    });

测试失败--

  • 失败:期望0大于0

我也尝试过使用$('select[name="colors"]').$$('option'),但没有用。 我正在使用react.js

0 个答案:

没有答案