
I have a web-based automation that provisions a user. After provisioning the user I then have to search for that user to perform additional setup. There are times when multiple results come back from the search. In selenium-based actions you can get web element(S), which returns a list of those elements. Is there a similar action in Power Automate Desktop aside from extract data from web page which builds the data table? Ultimately, I'm looking to confirm that there is only one result and then click on that result. Below is a screenshot of the search results elements that are the same. I can find them by passing :eq(x) (div#searchresults > div.search-listing.resbox.d-flex.align-items-stretch:eq(0) but I don't want to have to do an if statement on every incremental :eq value to see how many there are.
Thank you!