Skip to content
This repository has been archived by the owner on Mar 1, 2019. It is now read-only.

Commit

Permalink
release new tag
Browse files Browse the repository at this point in the history
  • Loading branch information
codeskyblue committed May 13, 2016
1 parent d52f611 commit dc38c8d
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ ATX毕竟是一个python库,给出代码的例子可能更好理解一些
```


* 监控事件
* 监控事件 (这个挺好用的)

```py
# watcher, trigger when screenshot is called
Expand All @@ -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)
Expand Down

0 comments on commit dc38c8d

Please sign in to comment.