I would like to extend the MonkeyDevice class of the monkeyrunner API. My derived class looks like this.

from com.android.monkeyrunner import MonkeyDevice, MonkeyRunner

class TestDevice(MonkeyDevice):
    def __init__(self, serial=None):
        MonkeyDevice.__init__(self)
        self = MonkeyRunner.waitForConnection(deviceId=serial) 
        self.serial = serial

When I call test_dev = TestDevice(serial) from another module I get the following error:

    test_dev = TestDevice(serial)
TypeError: _new_impl(): 1st arg can't be coerced to com.android.monkeyrunner.core.IMonkeyDevice

What am I doing wrong?

Thanks in advance!

link|improve this question

80% accept rate
What code language is this in? – JPM Sep 15 '11 at 15:37
@JPM: This is Python – mareser Sep 15 '11 at 16:13
1  
I have not use monkeyrunner, but from what I see... why are you reassigning self?, I mean you are passing the original self, to the constructor of MonkeyDevice which if fine and the right way to do it, then you are just dropping that self!, is this the right way to do it with monkeyrunner? – cyraxjoe Sep 30 '11 at 6:41
feedback

1 Answer

here you create a new local self

    self = MonkeyRunner.waitForConnection(deviceId=serial) 

and here you set an attribute on this new self while you probably meant the original self

    self.serial = serial

Anyhow without proper backtrace it's hard to say what python complains about, please use below to get proper backtraces.

import logging
try:
    # code that breaks
except:
    logging.exception("aiii")
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.