When I record in uft, it is capturing each character on a separate line. So for example, If I type in a field, rather than capturing that set command on one line, it captures each character on a separate line. I can’t find a property that would control this setting. Is there some property that I am missing?
For example:
Window("Facets").Dialog("Logon").WinEdit("User Id").Type "U"
Window("Facets").Dialog("Logon").WinEdit("User Id").Set "U"
Window("Facets").Dialog("Logon").WinEdit("User Id").Type "F"
Window("Facets").Dialog("Logon").WinEdit("User Id").Set "UF"
Window("Facets").Dialog("Logon").WinEdit("User Id").Type "T"
Window("Facets").Dialog("Logon").WinEdit("User Id").Set "UFT"
Window("Facets").Dialog("Logon").WinEdit("User Id").Type "T"
Window("Facets").Dialog("Logon").WinEdit("User Id").Set "UFTT"
Window("Facets").Dialog("Logon").WinEdit("User Id").Type "e"
Window("Facets").Dialog("Logon").WinEdit("User Id").Set "UFTTe"
Window("Facets").Dialog("Logon").WinEdit("User Id").Type "s"
Window("Facets").Dialog("Logon").WinEdit("User Id").Set "UFTTes"
Window("Facets").Dialog("Logon").WinEdit("User Id").Type "t"
Window("Facets").Dialog("Logon").WinEdit("User Id").Set "UFTTest"
Why doesn’t it just capture :
Window("Facets").Dialog("Logon").WinEdit("User Id").Set "UFTTest"