rvg
4 years agoOccasional Contributor
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...
- 4 years ago
That's a question that should be directed to Support. Here's the link:
- 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?