adb tool을 사용한 클릭 이벤트
adb shell 로 기기에 붙은 후 (또는 adb shell input ~~~~ 처럼 사용)
shell@hlteskt:/ $ input input Usage: input [<source>] <command> [<arg>…]
The sources are: trackball joystick touchnavigation mouse keyboard gamepad touchpad dpad stylus touchscreen
The commands and default sources are: text <string> (Default: touchscreen) keyevent [–longpress] <key code number or name> … (Default: keyboard) tap <x> <y> (Default: touchscreen) swipe <x1> <y1> <x2> <y2> [duration(ms)] (Default: touchscreen) press (Default: trackball) roll <dx> <dy> (Default: trackball)
——-=——– input tap x y //x,y를 한번 클릭 input swipe x y x2 y2 //x,y에서 x2,y2로 킬릭후 드래그.
보통 터치 스크린만 보면 된다.