Hello guys, I have a problem, that i dont really know how to solve anymore. The thing is, that I have a process that inserts a code to a search bar of this page and needs to click a specific line. The specific line is the one that has text “Signeda”, if there is no line, it searches for another called “KLARKSONAS” and ect. BUT, I have a problem, a big problem. I dont understand what i did wrong, but the selector doesnt always click things inside the search bar selector. Lets say, it goes from one page to another, it writes another code to the search bar, the search bar doesnt have “SIGNEDA” line in it, so it clicks anywhere else on the web page where it finds text Signeda in it. How to do so, that it would specificaly click only text in the search bar?
My clicks fuzzy selector is this:
“”
Another problem, the click activity for some reason now clicks the row in the screenshot for some reason, even tho it doesnt have aaname “Signeda” in it.
you can use regex in selector to include all 4 values with or condition..and to click only in search bar make sure to include an attribute related to search dropdown field so that it clicks on in that area
also using fuzzy can click on any location instead use strict with regex and attributes related to search dropdown
Thanks @Anil_G for the answer. So basically, now with your given Regex selector it will try to find any of the given values? But what will happen, when more then 1 of the values are present? Because the logic of my workflow should be like so - Signeda value gets the priority of the click activity. IF there lets say are Signeda and FPS rows, only signeda should be clicked, but if there are ex. FPS and KLARKSONAS, then it doesnt really matter.
for Signeda, FPS, Klarksonas, Polcar each of them you can use for loop to check if any one exists. if anyone found exit the loop else set up a Boolean to false it means all four not found