我想检查列表中是否没有文本。

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);

最佳答案

.not不是函数,正确的语法是:

expect(TenantList.getAttribute('aria-label')).not.toContain('Test');

07-24 16:26