1

我正在尝试自动安装 UC 浏览器。我能够到达最终的“Enter UC”按钮(在屏幕截图下方)按钮活动。我需要模拟点击"Enter UC"按钮。

我尝试了多种方法(如下所列)来模拟点击,但没有成功。

1.)使用 UIautomator 转储 - 我尝试获取转储并解析它以获取绑定,但是当我使用 获取转储时adb shell uiautomator dump,我无法获得完整的 UI 层次结构(可能是因为它只提供了原生视图的 UI - 我不确定,如果您有任何指示,请告诉我)。

倾倒:

<?xml version="1.0" encoding="UTF-8" standalone="true"?>

-<hierarchy rotation="0">


-<node bounds="[0,38][480,800]" selected="false" password="false" long-clickable="false" scrollable="false" focused="false" focusable="false" enabled="true" clickable="false" checked="false" checkable="false" content-desc="" package="com.UCMobile.intl" class="android.widget.FrameLayout" resource-id="" text="" index="0">

<node bounds="[0,38][480,800]" selected="false" password="false" long-clickable="false" scrollable="false" focused="false" focusable="false" enabled="true" clickable="true" checked="false" checkable="false" content-desc="" package="com.UCMobile.intl" class="android.view.View" resource-id="" text="" index="0" NAF="true"/>

</node>

</hierarchy>

2.) 尝试查看任何资源 id/文本/任何特殊转储,以便我可以获取元素并尝试点击,但“Enter UC”按钮没有 id/class/text。

如果您对此有任何建议,请告诉我。

[1]:https://i.stack.imgur.com/LCQYl.png

4

1 回答 1

0

UC 浏览器使用自定义视图实现其 UI(正如您从转储中看到的那样),那么 UiAutomator 或类似工具就无法了解其组件。

那时已经没有多少选择了。您可以使用AndroidViewClient/culebraCulebraTester在第一个屏幕上滑动,但是当到达最后一个屏幕时,您应该使用屏幕坐标进行触摸。

接触点 (x,y)

生成的脚本(在本例中为 python,但您也可以生成 java):

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


import re
import sys
import os


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': False, '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

        self.vc.click(x=520, y=1603)
        self.vc.sleep(_s)

if __name__ == '__main__':
    CulebraTests.main()
于 2017-05-06T19:36:28.717 回答