├── Readme.md ├── autotestpro ├── autotest.py ├── brower.py ├── cmd.json ├── download.py ├── get_data.py └── ios_sdk_pick_and_draw.py └── djangopro ├── .idea ├── dictionaries │ └── keenking.xml ├── djangopro.iml ├── misc.xml ├── modules.xml ├── preferred-vcs.xml └── workspace.xml ├── db.sqlite3 ├── djangopro ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py └── manage.py /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/Readme.md -------------------------------------------------------------------------------- /autotestpro/autotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/autotestpro/autotest.py -------------------------------------------------------------------------------- /autotestpro/brower.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # __author__ = 'k.' 3 | 4 | -------------------------------------------------------------------------------- /autotestpro/cmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/autotestpro/cmd.json -------------------------------------------------------------------------------- /autotestpro/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/autotestpro/download.py -------------------------------------------------------------------------------- /autotestpro/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/autotestpro/get_data.py -------------------------------------------------------------------------------- /autotestpro/ios_sdk_pick_and_draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/autotestpro/ios_sdk_pick_and_draw.py -------------------------------------------------------------------------------- /djangopro/.idea/dictionaries/keenking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/djangopro/.idea/dictionaries/keenking.xml -------------------------------------------------------------------------------- /djangopro/.idea/djangopro.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/djangopro/.idea/djangopro.iml -------------------------------------------------------------------------------- /djangopro/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/djangopro/.idea/misc.xml -------------------------------------------------------------------------------- /djangopro/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/djangopro/.idea/modules.xml -------------------------------------------------------------------------------- /djangopro/.idea/preferred-vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/djangopro/.idea/preferred-vcs.xml -------------------------------------------------------------------------------- /djangopro/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/djangopro/.idea/workspace.xml -------------------------------------------------------------------------------- /djangopro/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/djangopro/db.sqlite3 -------------------------------------------------------------------------------- /djangopro/djangopro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangopro/djangopro/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/djangopro/djangopro/settings.py -------------------------------------------------------------------------------- /djangopro/djangopro/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/djangopro/djangopro/urls.py -------------------------------------------------------------------------------- /djangopro/djangopro/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/djangopro/djangopro/wsgi.py -------------------------------------------------------------------------------- /djangopro/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keenking/autotest/HEAD/djangopro/manage.py --------------------------------------------------------------------------------