Testroid代码与Robotium不同

时间:2012-12-07 10:34:17

标签: android robotium

我为我录制了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内部类。

1 个答案:

答案 0 :(得分:0)

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