Solved Simulate and Window Message

bnastase

Member
Hi,

Simulate Click Method

It is the best method to interact with applications that are not visible or in foreground. This acts more like a developer programmatically changing the state of a control, making it 100% accurate if the control reacts to it. This method doesn’t work in all cases as there are technologies we cannot automate natively, by taking advantage of their underlying technology.

Send Window Messages Method

This method effectively replays all the window messages an application receives when a user uses the mouse. This works only with applications that respond to Window Messages.
 
Top