我想每0.1秒自动点击Android应用中的某个位置。是否有任何不需要root访问权限的应用程序或脚本可以执行此操作?谢谢!
答案 0 :(得分:0)
答案 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
. . .
}