I have a container in the GUI I'm trying to test that is an HTML dom. With Spy I can find the text field path I'm trying to capture the value of /dom[@domain='htmlviewer.company.com']/body/table/tbody/tr/td..../input[@title~'^My\ Field\ Name']"
which I know from looking at my GUI or at Spy has a value of 1234567890.
How do I capture the value 1234567890 which could be different each time?
Do we have to create an object of type text, or inputTag in order to use a function? I'm only familiar with
using the ranorex.validate.exists and similar type methods for objects in the repository. How do you retrieve an input tag value for which validate would not apply?