在我的测试文件中,我进行了以下测试。 我使用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);
});
测试失败--
我也尝试过使用$('select[name="colors"]').$$('option')
,但没有用。
我正在使用react.js