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
Post a Comment