我在 JB 上尝试了 uiautomator 工具 .. 在 Eclipse 中使用 Android 源配置了 uiautomator (android sdk/sources/android-18) 的附件源代码后,我遇到了这个问题:我声明
public class UiAutomatorTestCase extends InstrumentationTestCase {...}.
但是,参考 SDK 文档,它应该继承自 TestCase:
public class UiAutomatorTestCase extends TestCase {...}.
我的问题是:
- 哪种继承关系是正确的?
- 如何在 Eclipse 中使用 uiautomator 库附加源代码。
- 如何在uiautomator中正常使用android api,例如startService(),广播,内容提供等...