Re: Autogenerate IDs for eatch widget

2024-02-06 Thread Sebastian Bota
l quickly realize > that generating stable but unique debug IDs on that abstract level will be > difficult. Also widgets usually want debug ids on some internal meaningful > elements as well, which you do not know at that abstract level. > > -- J. > > > Sebastian

Autogenerate IDs for eatch widget

2024-02-06 Thread Sebastian Bota
Hello everyone. I have a GWT application and for testing purposes ( using external UI testing tools ) i need that each widget to have an ID set. i know it is possible by using ensureDebugID(), but this approach will take forever to change in my project and is very error prone. So my question,