Closed joshdion closed 5 years ago
I had the same issue.
You can try: element(by.model('selectedAvailable')).click(); element(by.linkText('Inactive')).click();
Did anyone ever get this working? I'm having a similar issue now.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
I'm doing automation testing of a webpage and I can't figure out a way to select these elements. I am using protractor selenium testing.
I tried this:
element(by.model('selectedAvailable')).click(); element(by.xpath('..//ul//li[1]')).click().
and this:
element(by.repeater('match in $matches').row(0)).click();
and was recommended to try this from people over at stackoverflow which isn't working either http://stackoverflow.com/q/40292488/6636535
element(by.cssContainingText('[ng-repeat="match in $matches"]', 'Streamer')).click();