I am using Selenium WebDriver and Protractor to run e2e tests on my angular project. Let's say I have an element like:
<div my-directive my-unique-id="abc123"></div>
How can locate the above element.
I tried with element(by.css('div[my-unique-id="abc123"]'));
, but it gives a NoSuchElementError.
If I try with HTML attributes like, for example, I want to locate:
<a title="myTitle" href="">Click me</a>
I was able to locate the element correctly using element(by.css('a[title="myTitle"]'))
How do I locate the element with custom attributes, if it does not have any standard HTML attributes?