I've no problem automating a windows application using InputSimulator library (http://inputsimulator.codeplex.com/) when working with a REAL machine.
When I move all the system to a virtualbox guest (using Win7) hosted inside an Ubuntu 10.04 LTS machine, I found that the SendInput WinAPI (used by InputSimulator) fails.
Reproduce the problem is very easy:
- create a windows forms app (with one button) that references WindowsInput.dll
- add the following private member
IMouseSimulator _mouse = new MouseSimulator();
- invoke this code from the button
_mouse.MoveMouseTo(0, 0);
In a real machine you'll see the mouse move to the top left angle, in a vm nothing happens.
Is there another way to send mouse movements and keys inside a VirtualBox Guest that works?
Regards, Giacomo