Protractor: Find Element by Attribute

2019-02-16 15:56发布

I have the following element i need to find for testing:

<div class="alert alert-danger" role="alert" ng-show="notValid">Zugangsdaten eingeben</div>

How can i find this element to check visibility (ng-show)?

The ng-show attribute and value are the only attribute and value to identify the element uniquely. The class is used in many elements...

I am searching for something like:

var notValid = element(by.Attribute('ng-show', 'notValid');

1条回答
【Aperson】
2楼-- · 2019-02-16 16:04

You can find it by.css():

element(by.css('div[ng-show=notValid]'));
$('div[ng-show=notValid]');  // shortcut for the above expression

Or, by.xpath():

element(by.xpath('//div[@ng-show="notValid"]'));
查看更多
登录 后发表回答