i want to open "Choose input method" popup menu from settings application. Using monkeyrunner touch command, the screen is taped, while the menu is not opened.
Here is the reproduce steps:
- environment: emulator (android sdk 4.1)
- Go to System settings -> Launguage & input view
- try to tap the text "Default" using monkeyrunner touch command
python code:
device = MonkeyRunner.waitForConnection(10, "emulator-5554")
device.touch(83, 486, MonkeyDevice.DOWN_AND_UP)
Actually result:
- the screen is taped, but the popup menu is not opened. Also reproduced with tap the text "Launage".
- And i tried with android sdk 2.3.3 for this issue, the submenu for "Default" and "Language" could be opened.
- if executed the adb command "adb shell input tap 83 486" on sdk 4.1, the menu could be opened.
Any ideas for this issue?