我想检查列表中是否有文字。
this.TenantList = element.all(by.repeater("tenant in tenantList"));
expect(TenantList.getAttribute('aria-label'))not().toContain('Test');
我尝试过但是失败了:is not a function
expect(TenantList.getAttribute('aria-label'))not().toContain('Test');
expect(TenantList.getAttribute('aria-label').toContain('Test')).toBe(false);
答案 0 :(得分:2)
.not
不是函数,正确的语法是:
expect(TenantList.getAttribute('aria-label')).not.toContain('Test');