我想运行monkeyrunner python脚本。

from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
from com.android.monkeyrunner.easy import EasyMonkeyDevice
from com.android.monkeyrunner.easy import By
from modjy.modjy_params import INTEGER


# Connects to the current device, returning a MonkeyDevice object
device = MonkeyRunner.waitForConnection()

easyDevice = EasyMonkeyDevice(device)
MonkeyRunner.sleep(2)
easyDevice.touch(By.id('id/btnSignUp'),MonkeyDevice.DOWN_AND_UP)


下面是我用来运行脚本的命令

c:\path_to_and_sdk_tool> monkeyrunner test.py


但是当我得到“ EasyMonkeyDevice”对象时,我得到了错误。

File "C:\python\test.py", line 19, in <module>
            easyDevice = EasyMonkeyDevice(device)
        java.lang.RuntimeException: Could not connect to the view server
                at com.android.chimpchat.hierarchyviewer.HierarchyViewer.setupViewServer
        (HierarchyViewer.java:57)
                at com.android.chimpchat.hierarchyviewer.HierarchyViewer.<init>(Hierarch
        yViewer.java:43)
                at com.android.chimpchat.adb.AdbChimpDevice.getHierarchyViewer(AdbChimpD
        evice.java:95)
                at com.android.monkeyrunner.easy.EasyMonkeyDevice.<init>(EasyMonkeyDevic
        e.java:64)
                at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)

                at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)

                at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Sou
        rce)
                at java.lang.reflect.Constructor.newInstance(Unknown Source)
                at org.python.core.PyReflectedConstructor.make(PyReflectedConstructor.ja
        va:67)
                at org.python.core.PyJavaType$1.new_impl(PyJavaType.java:517)
                at org.python.core.PyType.invokeNew(PyType.java:466)
                at org.python.core.PyType.type___call__(PyType.java:1558)


请分享一些我可以从中获取EasyMonkeyDevice导入的链接

最佳答案

您必须实现ViewServer才能使用EasyMonkeyDevice:
https://github.com/romainguy/ViewServer
因为easyMonkey使用层次结构查看器。

在您的活动中:

为层次结构查看器启用ViewServer,如下所示:

public class MyActivity extends Activity {

     public void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         ViewServer.get(this).addWindow(this);
     }

     public void onDestroy() {
        super.onDestroy();
        ViewServer.get(this).removeWindow(this);
     }

     public void onResume() {
        super.onResume();
        ViewServer.get(this).setFocusedWindow(this);
     }
}

10-08 18:24