0

Is there a way how to click on action bar Home button (http://developer.android.com/guide/topics/ui/actionbar.html)?

I tried

Label ${myHomeId} Tap

I just receive

Completed Script Playback - OK

but nothing happens... the activity is supposed to get back to the home screen.

The same for clicking on Menu Settings is working:

Label menu_settings tap

Is it a bug?

4

2 回答 2

0

在 MonkeyTalk (v2.0.8) 的新版本中,现在支持 ActionBar 溢出项目。使用新的 MonkeyTalk Android 代理更新您的项目并检查是否可以解决您的问题。

于 2014-08-30T20:32:08.123 回答
0

可以使用 ADB 命令单击它:

adb shell input tap 100 100

MonkeyTalk 脚本如下所示:

#tap_actionbar_home.mt
Vars * Define x y
System * Exec adb shell input tap ${x} ${y}

它是从另一个脚本调用的,使用:

Script tap_actionbar_home.mt Run 100 100

当然,值 100 和 100 可能不同。

于 2014-08-28T14:06:12.240 回答