使用Monkey测试应用程序

时间:2014-02-06 21:36:28

标签: android adb monkey

我正在尝试使用Monkey来测试我的应用程序的UI,但到目前为止还没有成功。我已将设备连接到计算机并尝试使用adb运行猴子。

我正在使用的命令是:

 adb shell monkey -p com.cooper.redditvideo -v 500

错误信息是:

:Monkey: seed=1392819534260 count=500
:AllowPackage: com.cooper.redditvideo
:IncludeCategory: android.intent.category.LAUNCHER
:IncludeCategory: android.intent.category.MONKEY

现在我可以告诉它试图说它无法找到上述两个类别的活动才能运行,但是我已经在我的清单中指明了这一点。

的Manifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.cooper.redditvideo"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="19" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.cooper.redditvideo.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
                <catagory android:name="android.intent.category.MONKEY" />
            </intent-filter>
        </activity>
        <activity android:name="com.cooper.redditvideo.AboutActivity"
            android:label="About"></activity>
    </application>

</manifest>

有什么建议吗?

0 个答案:

没有答案