如何使用mocha / chai检查元素cssProperty是否为x?
这就是我想要的:
expect(accountText.getCssProperty('color')).to.be('#fff');
这是我收到的错误消息:
expect(...).to.be is not a function
答案 0 :(得分:0)
尝试一下:
expect(accountText.getCssProperty('color').value).to.be.equal('#fff');