How do I select the changing id in website

Currently I am trying to select a ui element in the website with certain words in it. However, I have looked up the html of the website and it seems every time I select this element, it’s id will change. For example, the id of this element may be “x-1234” first time I hit it, but next time when I hit it the id will become “x-2134”. How could I be able to select it every time using selector? Thank you very much !

Hi @bilaer

Kindly replace the number in the id by * in the selector.

Then that will do the trick.

Thanks and regards.

9 Likes

Hi @bilaer,

Take a look here,

hi @bilaer

put like this id=“x-*” then it will work. once try it