How works dynamics selector into the Modern Design Experience?

Hello guys, a long time ago that I am not posted a question here, but today is the day. Guys I want to know something about the new Modern Design Experience, I started the course at UiPath Academy, but all the training was realized under STUDIO X, but I am using STUDIO. Watching the videos, I saw new useful concepts, but I’m worried because still, I can see anything about how works dynamic selectors, or for example and the classic design we can use variables into the selectors, but now we have a new statement called FUZZY SELECTOR. I’m not if into the next maybe the videos show something about this. But if you any idea or you can clarify my doubts, please give some help with this. Thank you.

Hello @efrain.caceres!

It seems that you have trouble getting an answer to your question in the first 24 hours.
Let us give you a few hints and helpful links.

First, make sure you browsed through our Forum FAQ Beginner’s Guide. It will teach you what should be included in your topic.

You can check out some of our resources directly, see below:

  1. Always search first. It is the best way to quickly find your answer. Check out the image icon for that.
    Clicking the options button will let you set more specific topic search filters, i.e. only the ones with a solution.

  2. Topic that contains most common solutions with example project files can be found here.

  3. Read our official documentation where you can find a lot of information and instructions about each of our products:

  4. Watch the videos on our official YouTube channel for more visual tutorials.

  5. Meet us and our users on our Community Slack and ask your question there.

Hopefully this will let you easily find the solution/information you need. Once you have it, we would be happy if you could share your findings here and mark it as a solution. This will help other users find it in the future.

Thank you for helping us build our UiPath Community!

Cheers from your friendly
Forum_Staff

Please keep one thing in mind, while creating a dynamic descriptor do remember to unlink it from object repository otherwise it won’t work.

Core difference between a selector and a fuzzy selector is that a selector will only execute if there is 100% match however in case of a fuzzy selector you can define how much percentage accuracy do you want, accuracy can be defined while creating a fuzzy selector.

1 Like

In fuzzy selector we can level of accuracy of the output based on fuzzy level accuracy(0-1)
0- lower the accuracy level, it returns the result with lower matching result related to the tag_name.
1- higher the accuracy level, it returns the result with higher matching result related to the tag_name
for an example : If I have to input 123-098 , if I exactly type how it is than with better accuracy it will give the output, instead of that if I type 123098 than have to change the fuzzy accuracy like 0.3(30%),0.2 etc it will fetch you the result with low matching
syntax for that is as follows –
matching:<tag_name>=fuzzy , tag_name can be aaname or anything based upon your requirement
fuzzyLevel:<tag_name>=<numerical_value> – here we can mention the tag_name with numeric value i.e accuracy value ranging from 0 to 1

1 Like