How to fix dynamic idx in selector

I am not able to scrape the data from web application as its idx in the selector keeps changing after few refreshes.

You should always try to avoid idx in selectors. It means the rest of your selector isn’t specific enough so it’s telling it “take the Nth item that matches” - fix your selector so the rest of it is specific and only returns the one UI element you need.

Hi @shruti_gharat

Welcome to UiPath community

A dynamic selector uses a variable or an argument as a property for the attribute of your target tag

Check out the thread and documentation

Regards
Gokul

Hello @shruti_gharat
If that attribute is a mandatory field in the selector then you have to make it dynamic by passing the variable or argument. Can watch the below video to fix this issue.

Thanks