Add Charles Proxy capture of registration.

This commit is contained in:
Kenneth Endfinger
2019-10-12 22:48:28 -05:00
parent 56127af4f9
commit 5f29322694
2 changed files with 4 additions and 1 deletions

Binary file not shown.

View File

@@ -44,7 +44,10 @@ class Application(object):
print("✔ load()")
script.load()
print("✔ resume(pid={})".format(pid))
self._device.resume(pid)
try:
self._device.resume(pid)
except Exception as e:
print(e)
self._sessions.add(session)
def _on_child_added(self, child):