├── .gitignore ├── .idea ├── .name ├── auto_http34_test.iml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── vcs.xml └── workspace.xml ├── Base ├── BaseElementEnmu.py ├── BaseEmail.py ├── BaseExcel.py ├── BaseFile.py ├── BaseGetExcel.py ├── BaseIni.py ├── BaseInit.py ├── BaseParams.py ├── BaseReq.py ├── BaseReq1.py ├── BaseRunner.py ├── BaseRunner1.py ├── BaseStatistics.py ├── __init__.py └── __pycache__ │ ├── BaseElementEnmu.cpython-34.pyc │ ├── BaseElementEnmu.cpython-36.pyc │ ├── BaseExcel.cpython-34.pyc │ ├── BaseExcel.cpython-36.pyc │ ├── BaseFile.cpython-34.pyc │ ├── BaseFile.cpython-36.pyc │ ├── BaseGetExcel.cpython-34.pyc │ ├── BaseGetExcel.cpython-36.pyc │ ├── BaseIni.cpython-34.pyc │ ├── BaseIni.cpython-36.pyc │ ├── BaseInit.cpython-34.pyc │ ├── BaseInit.cpython-36.pyc │ ├── BaseParams.cpython-34.pyc │ ├── BaseParams.cpython-36.pyc │ ├── BaseReq.cpython-34.pyc │ ├── BaseReq.cpython-36.pyc │ ├── BaseReq1.cpython-36.pyc │ ├── BaseRunner.cpython-34.pyc │ ├── BaseRunner.cpython-36.pyc │ ├── BaseRunner1.cpython-36.pyc │ ├── BaseStatistics.cpython-34.pyc │ ├── BaseStatistics.cpython-36.pyc │ ├── __init__.cpython-34.pyc │ └── __init__.cpython-36.pyc ├── Log ├── info.pickle ├── param.txt └── param_result.txt ├── README.md ├── Report ├── Report.xlsx └── api.xlsx ├── Runner ├── __init__.py ├── runner.py ├── runner1.py └── start_test.bat ├── Setting └── Config.ini ├── TestCases ├── Api.py ├── Api1.py ├── __init__.py └── __pycache__ │ ├── Api.cpython-34.pyc │ ├── Api.cpython-36.pyc │ ├── Api1.cpython-36.pyc │ ├── __init__.cpython-34.pyc │ └── __init__.cpython-36.pyc ├── channel_log.md ├── img ├── api.jpg ├── no_pict.jpg └── pict.jpg └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | auto_http34_test -------------------------------------------------------------------------------- /.idea/auto_http34_test.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 14 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |