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 <[email protected]> wrote: > 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 > <[email protected]>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 > > script1 && \ > > script2 && \ > > ... > > script10 > > > On Apr 26, 7:21 am, Gaytri Batra <[email protected]> wrote: > > > 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 <[email protected] > > >wrote: > > > > > You can create any kind of script you want in monkeyrunner as it is a > > > > python compiler. > > > > > On Apr 21, 7:53 am, Gaytri <[email protected]> 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 suggest me how to create and then execute > > > > > batches in monkeyrunner. > > > > > > Any kind of help will be highly appreciated. > > > > > > Thanks & Regards, > > > > > Gayatri > > > > > -- > > > > You received this message because you are subscribed to the Google > > > > Groups "Android Developers" group. > > > > To post to this group, send email to > > [email protected] > > > > To unsubscribe from this group, send email to > > > > [email protected] > > > > For more options, visit this group at > > > >http://groups.google.com/group/android-developers?hl=en > > > -- > > Have you read my blog ? > >http://dtmilano.blogspot.com > > android junit tests ui linux cult thin clients > > > -- > > You received this message because you are subscribed to the Google > > Groups "Android Developers" group. > > To post to this group, send email to [email protected] > > To unsubscribe from this group, send email to > > [email protected] > > For more options, visit this group at > >http://groups.google.com/group/android-developers?hl=en > > -- > Note: please don't send private questions to me, as I don't have time > to provide private support. All such questions should be posted on > public forums, where I and others can see and answer them -- Have you read my blog ? http://dtmilano.blogspot.com android junit tests ui linux cult thin clients -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

