Diego Torres Milano

Results 81 comments of Diego Torres Milano

Detected and prevented by 548df3c9a29e1714e1a850d50af028db31c2eedb

Can you attach the script you are using? Also, info about the device, android version, etc. so the problem can be reproduced.

You can enable `DEBUG` in `adbclient.py` (line 53): `DEBUG = True` and check the debug messages produced. This will help us understand the problem better.

Also, in your script you can do ``` import com.dtmilano.android.adb.adbclient com.dtmilano.android.adb.adbclient.DEBUG = True device.takeSnapshot(reconnect=True).save("fimage.png") ``` and check the debug output

what's in your script? which android version, avc version, device, etc.?

Sure there is. You can find more information about `adb` over the network at https://developer.android.com/studio/command-line/adb. Then you can connect using something like this in your command line ``` $ adb...

`View.isClickable()` works both for _UiAutomator_ and _ViewServer_ (including _LocalViewServer_) so you won't have problems. For example: ``` # class=android.widget.EditText no_id16 = vc.findViewByIdOrRaise("id/no_id/16") print "clickable:", no_id16.isClickable() ```

`VALID_ADB_VERSIONS = ["00040020", "0004001f"]` is already there, you should not get this error in latest version (i.e. 8.17.0)

`adb` should be working before the tests have a chance to run. Install `adb` (*I would recommend the official site*) and then try ``` adb devices ``` or something similar...

Well, it's running and telling you that `list` has not been implemented yet for **UiAutomator** back-end, mainly because **UiAutomator** has no `list` windows. There are at least two workarounds: -...