Re: [android-developers] Re: Batch Creation in Monkeyrunner

2011-04-26 Thread Gaytri Batra
Thanks a lot.. I will try this. On Tue, Apr 26, 2011 at 10:12 PM, Diego Torres Milano wrote: > Well, in that case you don't need anything but a shell script invoking > them: > > #! /bin/bash > script1 > script2 > ... > script10 > > or, if they are exiting indicating errors > > #! /bin/bash > scri

[android-developers] Re: Batch Creation in Monkeyrunner

2011-04-26 Thread Diego Torres Milano
I totally agree, but this applies more if you are creating test cases using MonkeyRunner API than if you have already a several monkeyrunner scripts as the OP suggested. On Apr 26, 1:52 pm, Bill Napier wrote: > We use python's unittest module to run a series of commands like that (very > useful i

Re: [android-developers] Re: Batch Creation in Monkeyrunner

2011-04-26 Thread Bill Napier
We use python's unittest module to run a series of commands like that (very useful if you're doing stuff like regression tests): http://docs.python.org/library/unittest.html On Tue, Apr 26, 2011 at 9:42 AM, Diego Torres Milano wrote: > Well, in that case you don't need anything but a shell scrip

[android-developers] Re: Batch Creation in Monkeyrunner

2011-04-26 Thread Diego Torres Milano
Well, in that case you don't need anything but a shell script invoking them: #! /bin/bash script1 script2 ... script10 or, if they are exiting indicating errors #! /bin/bash script1 && \ script2 && \ ... script10 On Apr 26, 7:21 am, Gaytri Batra wrote: > Can you please explain by taking an ex

Re: [android-developers] Re: Batch Creation in Monkeyrunner

2011-04-26 Thread Gaytri Batra
Can you please explain by taking an example for batch creation script. Suppose I am having scripts1-10 . How to call each script after completion of previous one. Thanks & Regards, Gayatri On Sat, Apr 23, 2011 at 1:27 AM, Diego Torres Milano wrote: > You can create any kind of script you want in

[android-developers] Re: Batch Creation in Monkeyrunner

2011-04-22 Thread Diego Torres Milano
You can create any kind of script you want in monkeyrunner as it is a python compiler. On Apr 21, 7:53 am, Gaytri wrote: > Hello All, > > I want to create a batch(sequence of multiple scripts) in > monkeyrunner. I have used this concept in other automation tools like > QTP. Can anyone please sugg