0

我为我录制并 testroid 生成了 Robotium 代码:

public void testRecorded() throws Exception {
        try {
            solo.waitForActivity("SplashScreen");
            solo.waitForActivity("TutorialActivity");
            solo.sleep(3100);
            solo.drag(solo.toScreenX(0.988f), solo.toScreenX(0.134f),
                solo.toScreenY(0.523f), solo.toScreenY(0.581f), 6);

但是当我在我手动编写的 Robotium 代码中粘贴相同的代码时,它无法识别 solo.toScreen、solo.clickOnView(solo.findViewById

它给出了无法解决的错误..

是否有一些不在 Robotium 中的 testroid 内置类。

4

1 回答 1

0

Testdroid Recorder 使用额外的库,它有 ExtSolo 类。这个类扩展了 Solo 并提供了额外的方法。Api 和库可以在这里找到:http: //docs.testdroid.com/_pages/extsolo.html

于 2012-12-08T18:24:07.003 回答