javascript - Click on a element with same class that matches text and exit in Protractor -


i able find text using element.all(by.repeater()) in protractor , using each check matching text. problem exiting once match done , clicking on matched element.

i tried using .each(), unable exit iteration.

any suggestions?

in case, each() not choice. it sounds filtering, example:

element.all(by.repeater("test in tests")).filter(function (elm) {     return elm.gettext().then(function (text) {         return text === "desired text";     }); }).then(function(filteredelements) {     filteredelements[0].click(); }); 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -