2016-09-27 13 views
1

テキストがリストに存在しないかどうかをチェックしたいと思います。テキストがリストに存在しないことを確認する方法

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

答えて

2

.notは関数ではありません、正しい構文は次のとおりです。

expect(TenantList.getAttribute('aria-label')).not.toContain('Test'); 
関連する問題