Forum Discussion
HKosova
Alumni
14 years agoHello,
No, TestComplete doesn't have a method for inserting text at coordinates. You need to use a specific object method or property for text input, such as Keys(), e.g.:
No, TestComplete doesn't have a method for inserting text at coordinates. You need to use a specific object method or property for text input, such as Keys(), e.g.:
Or you can use the global Sys.Keys method instead of the object-specific method, like this:window.Click(x, y);
Sys.Keys("Test");