如何检查文本不在列表中

时间:2016-09-27 18:09:36

标签: javascript jasmine protractor

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

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

1 个答案:

答案 0 :(得分:2)

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

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