我读了这个http://chaijs.com/api/bdd/
并尝试用数组制作一些代码..我需要确保我的数组的一部分包含...
expect(LoginPage.listOfItems(ITEM1).to.be.an("array")).that.include(ITEM1);
但是我知道了
无法阅读财产' be'未定义的
当我制作console.log
时console.log(LoginPage.listOfItems(ITEM1).getText());
我可以得到适当的价值...... 我做错了什么?:(
答案 0 :(得分:0)
您的括号位于错误的位置。
expect(LoginPage.listOfItems(ITEM1)).to.be.an("array").that.include(ITEM1);
您可以参考文档here