Good news, .select() is still here and was not renamed. You can call it two ways:
In JS (any query or handler): textInput1.select()
On focus, so entering the field selects its text: on the Text Input add an event handler, set Event = Focus, Action = Run script, and Script = textInput1.select() (swap in your input's name).