Re: [android-developers] Simulate UI Actions on device

2011-06-15 Thread Bill Napier
On Sat, Jun 11, 2011 at 11:25 AM, Mark Murphy wrote: > > > If not, then is MonkeyRunner is enough for it? > > Only you can answer that. > > If MonkeyRunner doesn't work out well, you can always use the same protocol that MR uses to talk to the device to implement the features yourself. http://and

Re: [android-developers] Simulate UI Actions on device

2011-06-13 Thread Pepijn Van Eeckhoudt
On 11/06/2011 20:25, Mark Murphy wrote: On Fri, Jun 10, 2011 at 9:12 AM, Gorav Singal wrote: Actually, I want to have mobile application running in background. And, I have a java application running on desktop, which will send commands through socket. And, the device application will perform th

Re: [android-developers] Simulate UI Actions on device

2011-06-11 Thread Mark Murphy
On Fri, Jun 10, 2011 at 9:12 AM, Gorav Singal wrote: > Actually, I want to have mobile application running in background. And, I > have a java application running on desktop, which will send commands through > socket. And, the device application will perform the required UI action. > e.g. touch/cl

Re: [android-developers] Simulate UI Actions on device

2011-06-11 Thread Gorav Singal
Actually, I want to have mobile application running in background. And, I have a java application running on desktop, which will send commands through socket. And, the device application will perform the required UI action. e.g. touch/click on coordinates x, y I want to perform UI action on scree

Re: [android-developers] Simulate UI Actions on device

2011-06-10 Thread Pepijn Van Eeckhoudt
If you're trying to test your own application code you can do this via the Instrumentation API. Pepijn On 10/06/2011 14:34, Mark Murphy wrote: On Thu, Jun 9, 2011 at 3:41 AM, gorav wrote: I want to simulate keyboard events, touch events on screen. And, I don;t want to have dependency on Andr

Re: [android-developers] Simulate UI Actions on device

2011-06-10 Thread Mark Murphy
On Thu, Jun 9, 2011 at 3:41 AM, gorav wrote: > I want to simulate keyboard events, touch events on screen. And, I > don;t want to have dependency on Android SDK. i.e. I want to deploy > apk file on device, which can fire some events. Fortunately, this is impossible, as it would be a massive secur

[android-developers] Simulate UI Actions on device

2011-06-09 Thread gorav
I want to simulate keyboard events, touch events on screen. And, I don;t want to have dependency on Android SDK. i.e. I want to deploy apk file on device, which can fire some events. I studied MonkeyRunner, and it seems that I need SDK. Also, it requires python scripts. Is there any java android