更快的android输入点击命令

时间:2015-12-23 20:20:36

标签: android adb

我试图一个接一个地运行快速输入点击命令,但它们在它们之间运行1秒。 我想知道是否有更快的选择来运行它们。

3 个答案:

答案 0 :(得分:4)

input是一个java应用程序,"延迟"您看到的内容取决于您的设备启动新的Java应用程序所需的时间。 1s是旧设备的典型特征。

如果您想继续使用input,则无法做很多事情。替代方案可能是using sendevent command或修改input以接受一系列坐标,以便立即发送整个手势。

答案 1 :(得分:0)

虽然sendevent肯定是另类,但它很麻烦并且取决于设备。

存在另一种选择: CulebraTester CulebraTester 通过Web浏览器提供实时点击测试记录。此浏览器已连接到正在测试的Android设备。 生成的脚本与您可能已知的AndroidViewClient/culebra兼容。 两种解决方案之间的主要偏差是使用不同的后端。在大多数情况下, AndroidViewClient / culebra 通常使用adb作为后端,而 CulebraTester 使用在Ui Automator支持的设备上运行的服务器

此测试脚本。这是由 CulebraTester

自动生成的
#! /usr/bin/env python
# -*- coding: utf-8 -*-
'''
Copyright (C) 2013-2018  Diego Torres Milano
Created on 2018-02-06 by CulebraTester 
                      __    __    __    __
                     /  \  /  \  /  \  /  \ 
____________________/  __\/  __\/  __\/  __\_____________________________
___________________/  /__/  /__/  /__/  /________________________________
                   | / \   / \   / \   / \   \___
                   |/   \_/   \_/   \_/   \    o \ 
                                           \_____/--<
@author: Diego Torres Milano
@author: Jennifer E. Swofford (ascii art snake)
'''


import re
import sys
import os
import time

import unittest
try:
    sys.path.insert(0, os.path.join(os.environ['ANDROID_VIEW_CLIENT_HOME'], 'src'))
except:
    pass

import pkg_resources
pkg_resources.require('androidviewclient>=12.4.0')
from com.dtmilano.android.viewclient import ViewClient, CulebraTestCase
from com.dtmilano.android.uiautomator.uiautomatorhelper import UiAutomatorHelper, UiScrollable, UiObject, UiObject2

TAG = 'CULEBRA'

class CulebraTests(CulebraTestCase):

    @classmethod
    def setUpClass(cls):
        cls.kwargs1 = {'ignoreversioncheck': False, 'verbose': True, 'ignoresecuredevice': False}
        cls.kwargs2 = {'forceviewserveruse': False, 'useuiautomatorhelper': True, 'ignoreuiautomatorkilled': True, 'autodump': False, 'startviewserver': True, 'compresseddump': True}
        cls.options = {'start-activity': None, 'concertina': False, 'device-art': None, 'use-jar': False, 'multi-device': False, 'unit-test-class': True, 'save-screenshot': None, 'use-dictionary': False, 'glare': False, 'dictionary-keys-from': 'id', 'scale': 1, 'find-views-with-content-description': True, 'window': -1, 'orientation-locked': None, 'save-view-screenshots': None, 'find-views-by-id': True, 'log-actions': False, 'use-regexps': False, 'null-back-end': False, 'auto-regexps': None, 'do-not-verify-screen-dump': True, 'verbose-comments': False, 'gui': False, 'find-views-with-text': True, 'prepend-to-sys-path': False, 'install-apk': None, 'drop-shadow': False, 'output': None, 'unit-test-method': None, 'interactive': False}
        cls.sleep = 5

    def setUp(self):
        super(CulebraTests, self).setUp()

    def tearDown(self):
        super(CulebraTests, self).tearDown()

    def preconditions(self):
        if not super(CulebraTests, self).preconditions():
            return False
        return True

    def testSomething(self):
        if not self.preconditions():
            self.fail('Preconditions failed')

        _s = CulebraTests.sleep
        _v = CulebraTests.verbose

        t = time.time()
        for _ in range(100):
            self.vc.click(x=321, y=996)
        print (time.time() - t)


if __name__ == '__main__':
    CulebraTests.main()

仅添加了发送100个点击事件的定时循环。 运行它显示了如何使用此方法改进延迟。

答案 2 :(得分:0)

像@ThomasW一样,monkeyrunner工具能够非常快速地自动执行水龙头(比我的应用程序识别水龙头的速度还快)。一旦启动(花费几秒钟),触摸功能基本上就是即时的:

from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
device = MonkeyRunner.waitForConnection()
for i in range(1, 10000):
    device.touch(x, y, 'DOWN_AND_UP')