如何通过adb shell同时单击两个按钮?

时间:2019-08-02 05:14:04

标签: android adb

我想点击屏幕上的两个按钮以同时通过adb传递它们的坐标。我只知道一次单击一次,就像这样:

adb -s fe158b68 shell input tap 975 1412 

谁能告诉我该怎么做?

1 个答案:

答案 0 :(得分:0)

尝试使用类似这样的内容:

<div class="container">
  <div class="centered">
    I am centered
  </div>
</div>

要在屏幕上单击两个不同的坐标,请使用此

adb shell "input keyevent 67 && input keyevent 67"

其中x1,y1和x2,y2是两个不同的坐标