Forum Discussion

rvg's avatar
rvg
Occasional Contributor
4 years ago
Solved

low-level mechanism of modifying the state of java controls

While running a test for  java application we get the unexpected exception at some point. The line of code in TestComplete script which generates the exception is like this:   win.LicenseCustomerCo...
  • AlexKaras's avatar
    4 years ago

    Hi,

     

    win.LicenseCustomerCode.wText := some_code;

    If LicenseCustomerCode is an editable control, you may try something like this:

    win.LicenseCustomerCode.Keys(some_code);

     

    Does it help?