Diego Torres Milano
Diego Torres Milano
The protocol used by `adb` to install packages is undocumented. Adb source could be analyzed but haven't had the time. In the meantime you can use `adb install`. On Thu,...
Still in the **TODO** list...
It seems like a very good idea. Pull request welcome.
It's an UiAutomator error. Instead of returning a valid XML containing the View dump it returns the error message: ``` 'ERROR: null root node returned by UiTestAutomationBridge.\r\n' ``` Not an...
This is probably closer: http://stackoverflow.com/questions/16929129/null-root-node-returned-by-uitestautomationbridge-by-uiautomator On Mon, Oct 7, 2013 at 12:11 PM, imiten [email protected] wrote: > I assume its android sdk issue. Does the link to issue on google...
This is where you are getting the Expat exception: ``` try: parserStatus = parser.Parse(uiautomatorxml.encode(encoding='utf-8', errors='replace'), True) except xml.parsers.expat.ExpatError, ex: print >>sys.stderr, "ERROR: Offending XML:\n", repr(uiautomatorxml) raise RuntimeError(ex) ``` and **AndroidViewClient**...
Can you please provide the source code (perhaps only the relevant part) of your test script? I have been running tests for hour and even days with no problems so...
It seems like a good idea. I've created the patch (3f1f2864124c6d62c0f24c77058c478e9880287b) and gave you credit. Thanks.
1. AndroidViewClient/culebra can use different back-ends. The default back-end for API >= 19 is **UiAutomator**. It may not find an idle state, so you may want to try other alternatives....
You may find useful the latest version (_v10.5.1_) which introduces **null backend** support (`culebra --null-back-end`). Let me know if it solves your problem.