I think the problem is that Katalon uses id to select the element, and maybe this id keeps changing every time your frontend app is generated.
IMO, you can either :
- Set id manually for the element if the front framework allow it.
Or - try to set Xpath based on the element attributes that do not change (for Chrome You can get the element Xpath using Developer tools and from the right click menu on the element)
Hope it helps.