From dc38c8dcb469fc3792333443c638af73804ede92 Mon Sep 17 00:00:00 2001 From: codeskyblue Date: Fri, 13 May 2016 17:14:14 +0800 Subject: [PATCH] release new tag --- CHANGELOG | 26 ++++++++++++++++++++++++++ README.md | 5 +++-- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 12c7ffd..5d55597 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,32 @@ CHANGES ======= +* update doc, add taskqueue for ios +* add report for atx +* add atx.yml runner +* add more hook_wrap +* move dep to their own +* use numpy version on pypi +* catch subprocess.CalledError and use new watch instead of old one +* use atx-uiautomator instead uiautomator +* use vue to toggle landscape +* more good structured web page +* fix touch position according to screen orientation +* add random contour monkey. use random contour rect +* add bruteforce monkey +* add start app after install +* merge type code, forgot when edited +* add monkey, even through not very stable +* save template mask +* rename device_mixin to mixin +* add keyevent api, type support space +* fix errors found by pyflakes +* add scene detector + +1.0.9 +----- + +* update change log * add ios utils * update requirements * change some method of adb to static diff --git a/README.md b/README.md index 3fe9bea..215c7d5 100755 --- a/README.md +++ b/README.md @@ -265,7 +265,7 @@ ATX毕竟是一个python库,给出代码的例子可能更好理解一些 ``` -* 监控事件 +* 监控事件 (这个挺好用的) ```py # watcher, trigger when screenshot is called @@ -275,7 +275,8 @@ ATX毕竟是一个python库,给出代码的例子可能更好理解一些 timeout = 50 # 50s with d.watch('enter game', timeout) as w: - w.on('enter-game').click() + w.on('enter-game.png').click() + w.on('notification.png').click('confirm.png') w.on('inside.png').quit() w.on(text='Login').quit() # UI Component w.on('outside.png').do(foo)