3

次のように、ビューの1つに関する情報を取得しようとするmonkeyrunnerスクリプトがあります。

v = d.getViewById('id/search_progress_bar')
print dir(v)
for i in range(10):
    print 'about to call v.getLocation'
    print v.getLocation()
    m.sleep(1)

dir(v) ステップの出力は次のとおりです。

['__class__', '__delattr__', '__doc__', '__getattribute__', '__hash__', '__init__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__str__', 'getAccessibilityIds', 'getChecked', 'getChildren', 'getEnabled', 'getFocused', 'getLocation', 'getParent', 'getSelected', 'getText', 'getViewClass', 'setFocused', 'setSelected'] 

ただし、 v.getLocation() メソッドを使用しようとすると、すぐに以下の例外が発生します。

121024 16:30:26.373:S [main] [com.android.monkeyrunner.MonkeyRunnerOptions] Script terminated due to an exception
121024 16:30:26.373:S [main] [com.android.monkeyrunner.MonkeyRunnerOptions]Traceback (most recent call last):
  File "/Users/swolfe/svn/jython/progress_bar_testing.py", line 20, in <module>
    print v.getLocation()
    at com.android.chimpchat.ChimpManager.queryView(ChimpManager.java:414)
    at com.android.chimpchat.core.ChimpView.queryView(ChimpView.java:52)
    at com.android.chimpchat.core.ChimpView.getLocation(ChimpView.java:64)
    at com.android.monkeyrunner.MonkeyView.getLocation(MonkeyView.java:81)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)

com.android.chimpchat.core.ChimpException: com.android.chimpchat.core.ChimpException: No accessibility event has occured yet

ChimpChat に詳しい人はいますか? それが MonkeyRunner のコア コードの一部であることは理解できません。アクセシビリティと MonkeyRunner の関係はどのようなものですか? また、アクセシビリティ イベントがまだ発生していないことを訴えているのはなぜですか? なんらかのアクセシビリティ サービスまたはインストルメンテーション サービスを開始する必要がありますか?

ありがとう。

4

1 に答える 1

2

あなたが正しいです。うまくいきません。ただし、実際に機能するAndroidViewClientを使用できます。スクリプトは次のようになります。

vc = ViewClient(d, serialno)
v = vc.findViewByIdOrRaise('id/search_progress_bar')
print dir(v)
for i in range(10):
    print 'about to call v.getCoords'
    print v.getCoords()
    m.sleep(1)

そして次のようなものを印刷します

['_View__dumpWindowsInformation', '_View__obtainPxPy', '_View__obtainStatusBarDimensionsIfVisible', '_View__obtainVwVh', '_View__obtainVxVy', '__call__', '__doc__', '__getattr__', '__getitem__', '__init__', '__module__', '__smallStr__', '__str__', '__tinyStr__', 'add', 'allPossibleNamesWithColon', 'build', 'children', 'currentFocus', 'device', 'factory', 'getCenter', 'getClass', 'getCoords', 'getHeight', 'getId', 'getParent', 'getPositionAndSize', 'getText', 'getUniqueId', 'getVisibility', 'getWidth', 'getX', 'getXY', 'getY', 'intersection', 'map', 'parent', 'touch', 'windows']
about to call v.getCoords
((0, 157), (480, 229))
about to call v.getCords
((0, 157), (480, 229))
...

あなたが自分の見方が動くことを期待していない限り、それはあなたの意図ではないかと思います。

于 2012-10-25T03:27:18.117 に答える