Catalon Studio testing and ID

Hello. I want to ask. Does Katalon Studio need ID traceability for testing? If I don’t have an ID on the attribute, why will Katalon pull the data? He’s doing a very slow test for me, and it’s probably because of the IDs. So how do you help? well thank you

I am assuming you mean an id attribute to a given tag, and no, you do not need an id. It’s easier if you have something unique to identify an element, but not necessary. You can start a path from another element and “move” from it to the one you want, such as:

id("row0grid")/div[1]/div
//table/tbody/tr[5]/td[2]
//input[text()="Windows10"]/following::div/span

Edit: and if you do have id, it would have to be static, not dynamic. You can not use a dynamic id in a pathway (obviously) as it would change ever time.