Trying to click on an element located within a repeater has presented some challenges. The issue arises from the fact that it is a modal dialog and returns multiple elements for the repeater. Each page in our application functions as a modal dialog, leading to a stacking effect where the prior page remains 'underneath' the current one. This design allows users to navigate back to their previous location without reloading the page by simply hitting the back button.
The repeater being used is as follows:
this.searchResults = element.all(by.repeater('provider in providers'));
Upon inspecting what is returned by the repeater (I conducted a search in the console for the class), I found this result: https://i.stack.imgur.com/X3gSy.png
How can I effectively target and click on one of the results returned by the repeater to interact with the element within it?