2
A
回答
1
答案已經給出here。
public static ViewAction clickXY(final int x, final int y){
return new GeneralClickAction(
Tap.SINGLE,
new CoordinatesProvider() {
@Override
public float[] calculateCoordinates(View view) {
final int[] screenPos = new int[2];
view.getLocationOnScreen(screenPos);
final float screenX = screenPos[0] + x;
final float screenY = screenPos[1] + y;
float[] coordinates = {screenX, screenY};
return coordinates;
}
},
Press.FINGER);
}
相關問題
- 1. 寫點擊xy座標csv
- 2. AndroidStudio記錄咖啡測試
- 3. XY座標光標點擊X11
- 4. RecyclerView咖啡測試點擊()不起作用
- 5. 咖啡AmbiguousViewMatcherException試圖點擊一個圖標(TextView的)
- 6. Android咖啡測試。檢測的ListView
- 7. 咖啡 - 點擊的TextView(按鈕)
- 8. 隨機濃咖啡測試失敗
- 9. 多次運行濃縮咖啡測試
- 10. 刪除咖啡測試仍在運行
- 11. Android的咖啡多個測試路徑
- 12. 測試片段與濃咖啡庫
- 13. 用特拉維斯測試咖啡
- 14. Android咖啡測試setPortraitOrientation卡住
- 15. 意式濃縮咖啡測試 - Android
- 16. 濃縮咖啡循環結束測試
- 17. 無法運行測試咖啡
- 18. 如何測試與RxBindings和咖啡
- 19. 沒有測試的咖啡培訓
- 20. 目的stubAllExternalIntents()在咖啡意圖測試
- 21. 咖啡RecyclerView在SwipeRefreshLayout塊測試
- 22. CircleCI上的濃咖啡測試失敗
- 23. 測試小吃吧與咖啡
- 24. 勺子和濃咖啡測試
- 25. 咖啡單擊菜單項
- 26. 檢測點擊座標Clojure
- 27. 咖啡:如何點擊圖片點擊按鈕手機相機
- 28. 上的ImageButton的Android咖啡點擊點擊錯誤的位置
- 29. Actionscript 3自動鼠標點擊XY舞臺座標
- 30. 用咖啡標記敲除
可能的[點擊邊界/座標](http://stackoverflow.com/questions/22177590/click-by-bounds-coordinates) –