脚本/应用程序自动点击Android应用程序

时间:2016-05-24 17:34:45

标签: android click

我想每0.1秒自动点击Android应用中的某个位置。是否有任何不需要root访问权限的应用程序或脚本可以执行此操作?谢谢!

2 个答案:

答案 0 :(得分:0)

你应该看看这些链接:

UI Tests using Espresso

Robotium

答案 1 :(得分:0)

我强烈建议您阅读Espresso for Android

您可以像这样访问UI组件:

public void testClickButton() {
    // Type text and then press the button.
    onView( withId( R.id.button_main ) )
            .perform( typeText( SOME_STRING ), closeSoftKeyboard() );
    onView( withId( R.id.changeTextButton ) ).perform( click() );

    // assert that the text changes as expected
    . . .
}