├── .gitignore ├── LICENSE ├── README.md ├── case_data.xls ├── config.yaml ├── core.py ├── hooks.py ├── recording.py ├── requirements.txt ├── run.py └── test_main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy7y/apiAutoTest/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy7y/apiAutoTest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy7y/apiAutoTest/HEAD/README.md -------------------------------------------------------------------------------- /case_data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy7y/apiAutoTest/HEAD/case_data.xls -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy7y/apiAutoTest/HEAD/config.yaml -------------------------------------------------------------------------------- /core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy7y/apiAutoTest/HEAD/core.py -------------------------------------------------------------------------------- /hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy7y/apiAutoTest/HEAD/hooks.py -------------------------------------------------------------------------------- /recording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy7y/apiAutoTest/HEAD/recording.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy7y/apiAutoTest/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy7y/apiAutoTest/HEAD/run.py -------------------------------------------------------------------------------- /test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zy7y/apiAutoTest/HEAD/test_main.py --------------------------------------------------------------------------------