├── .dockerignore ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── 1.png ├── Dockerfile ├── README.en.md ├── README.md ├── allure ├── config │ ├── allure-cucumber.yml │ ├── allure-junit.yml │ └── allure.yml └── plugins │ ├── README.txt │ ├── behaviors-plugin │ ├── allure-plugin.yml │ └── static │ │ └── index.js │ ├── custom-logo-plugin │ ├── allure-plugin.yml │ └── static │ │ ├── custom-logo.svg │ │ └── styles.css │ ├── jira-plugin │ └── allure-plugin.yml │ ├── junit-xml-plugin │ └── allure-plugin.yml │ ├── packages-plugin │ ├── allure-plugin.yml │ └── static │ │ └── index.js │ ├── screen-diff-plugin │ ├── allure-plugin.yml │ └── static │ │ ├── index.js │ │ └── styles.css │ ├── trx-plugin │ └── allure-plugin.yml │ ├── xctest-plugin │ └── allure-plugin.yml │ ├── xray-plugin │ └── allure-plugin.yml │ └── xunit-xml-plugin │ └── allure-plugin.yml ├── api ├── __init__.py └── client.py ├── config └── config.yaml ├── conftest.py ├── docker-compose.yml ├── main.py ├── page ├── __init__.py └── home.py ├── pytest.ini ├── report └── video │ ├── 20230225_110633 │ ├── 0fb917dbc0188b3030d76ac98443e491.webm │ ├── 280b84e676230c050a9001fbfff7c55a.webm │ ├── 2c68518ad5f944ad7313be4305410058.webm │ └── test-failed-1.png │ ├── 20230225_111455 │ ├── 0f2e191434c25ec100c6e23154a1655c.webm │ ├── 18e694514708d649275f50a02d00da3b.webm │ ├── e15740f8d17bdfa4cbc60bf5a1804d6b.webm │ └── test-failed-1.png │ └── 20230225_112003 │ ├── a3f340b8268e7aedba4d7422297acdf4.webm │ ├── d291a4bfda1ef5f677491648e5d9d94f.webm │ ├── f2680ef8d438439bfb99a15a0dac2272.webm │ └── test-failed-1.png ├── requirements.txt ├── test-results ├── 20221219_195422 │ ├── 2288754965b89c89d336cec7791199fa.webm │ └── test-failed-1.png └── 20221219_195452 │ ├── c6e148cfef1cdf501ac483ad8d4e7e7c.webm │ └── test-failed-1.png ├── test.py ├── test_case ├── API │ ├── __init__.py │ ├── conftest.py │ └── test_api.py ├── UI │ ├── demo1 │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_demo1_case.yaml │ │ └── test_ui.py │ ├── demo2 │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_demo2_case.yaml │ │ └── test_ui.py │ └── demo3 │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_demo3_case.yaml │ │ └── test_ui.py └── __init__.py └── tools ├── __init__.py ├── data_process.py ├── email_send.py ├── encode.py ├── generate_data.py ├── read_file.py └── sql_operate.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/1.png -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/README.md -------------------------------------------------------------------------------- /allure/config/allure-cucumber.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /allure/config/allure-junit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/config/allure-junit.yml -------------------------------------------------------------------------------- /allure/config/allure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/config/allure.yml -------------------------------------------------------------------------------- /allure/plugins/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/README.txt -------------------------------------------------------------------------------- /allure/plugins/behaviors-plugin/allure-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/behaviors-plugin/allure-plugin.yml -------------------------------------------------------------------------------- /allure/plugins/behaviors-plugin/static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/behaviors-plugin/static/index.js -------------------------------------------------------------------------------- /allure/plugins/custom-logo-plugin/allure-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/custom-logo-plugin/allure-plugin.yml -------------------------------------------------------------------------------- /allure/plugins/custom-logo-plugin/static/custom-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/custom-logo-plugin/static/custom-logo.svg -------------------------------------------------------------------------------- /allure/plugins/custom-logo-plugin/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/custom-logo-plugin/static/styles.css -------------------------------------------------------------------------------- /allure/plugins/jira-plugin/allure-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/jira-plugin/allure-plugin.yml -------------------------------------------------------------------------------- /allure/plugins/junit-xml-plugin/allure-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/junit-xml-plugin/allure-plugin.yml -------------------------------------------------------------------------------- /allure/plugins/packages-plugin/allure-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/packages-plugin/allure-plugin.yml -------------------------------------------------------------------------------- /allure/plugins/packages-plugin/static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/packages-plugin/static/index.js -------------------------------------------------------------------------------- /allure/plugins/screen-diff-plugin/allure-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/screen-diff-plugin/allure-plugin.yml -------------------------------------------------------------------------------- /allure/plugins/screen-diff-plugin/static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/screen-diff-plugin/static/index.js -------------------------------------------------------------------------------- /allure/plugins/screen-diff-plugin/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/screen-diff-plugin/static/styles.css -------------------------------------------------------------------------------- /allure/plugins/trx-plugin/allure-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/trx-plugin/allure-plugin.yml -------------------------------------------------------------------------------- /allure/plugins/xctest-plugin/allure-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/xctest-plugin/allure-plugin.yml -------------------------------------------------------------------------------- /allure/plugins/xray-plugin/allure-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/xray-plugin/allure-plugin.yml -------------------------------------------------------------------------------- /allure/plugins/xunit-xml-plugin/allure-plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/allure/plugins/xunit-xml-plugin/allure-plugin.yml -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/api/__init__.py -------------------------------------------------------------------------------- /api/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/api/client.py -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/config/config.yaml -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/conftest.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/main.py -------------------------------------------------------------------------------- /page/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/page/__init__.py -------------------------------------------------------------------------------- /page/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/page/home.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/pytest.ini -------------------------------------------------------------------------------- /report/video/20230225_110633/0fb917dbc0188b3030d76ac98443e491.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/report/video/20230225_110633/0fb917dbc0188b3030d76ac98443e491.webm -------------------------------------------------------------------------------- /report/video/20230225_110633/280b84e676230c050a9001fbfff7c55a.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/report/video/20230225_110633/280b84e676230c050a9001fbfff7c55a.webm -------------------------------------------------------------------------------- /report/video/20230225_110633/2c68518ad5f944ad7313be4305410058.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/report/video/20230225_110633/2c68518ad5f944ad7313be4305410058.webm -------------------------------------------------------------------------------- /report/video/20230225_110633/test-failed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/report/video/20230225_110633/test-failed-1.png -------------------------------------------------------------------------------- /report/video/20230225_111455/0f2e191434c25ec100c6e23154a1655c.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/report/video/20230225_111455/0f2e191434c25ec100c6e23154a1655c.webm -------------------------------------------------------------------------------- /report/video/20230225_111455/18e694514708d649275f50a02d00da3b.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/report/video/20230225_111455/18e694514708d649275f50a02d00da3b.webm -------------------------------------------------------------------------------- /report/video/20230225_111455/e15740f8d17bdfa4cbc60bf5a1804d6b.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/report/video/20230225_111455/e15740f8d17bdfa4cbc60bf5a1804d6b.webm -------------------------------------------------------------------------------- /report/video/20230225_111455/test-failed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/report/video/20230225_111455/test-failed-1.png -------------------------------------------------------------------------------- /report/video/20230225_112003/a3f340b8268e7aedba4d7422297acdf4.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/report/video/20230225_112003/a3f340b8268e7aedba4d7422297acdf4.webm -------------------------------------------------------------------------------- /report/video/20230225_112003/d291a4bfda1ef5f677491648e5d9d94f.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/report/video/20230225_112003/d291a4bfda1ef5f677491648e5d9d94f.webm -------------------------------------------------------------------------------- /report/video/20230225_112003/f2680ef8d438439bfb99a15a0dac2272.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/report/video/20230225_112003/f2680ef8d438439bfb99a15a0dac2272.webm -------------------------------------------------------------------------------- /report/video/20230225_112003/test-failed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/report/video/20230225_112003/test-failed-1.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/requirements.txt -------------------------------------------------------------------------------- /test-results/20221219_195422/2288754965b89c89d336cec7791199fa.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test-results/20221219_195422/2288754965b89c89d336cec7791199fa.webm -------------------------------------------------------------------------------- /test-results/20221219_195422/test-failed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test-results/20221219_195422/test-failed-1.png -------------------------------------------------------------------------------- /test-results/20221219_195452/c6e148cfef1cdf501ac483ad8d4e7e7c.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test-results/20221219_195452/c6e148cfef1cdf501ac483ad8d4e7e7c.webm -------------------------------------------------------------------------------- /test-results/20221219_195452/test-failed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test-results/20221219_195452/test-failed-1.png -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test.py -------------------------------------------------------------------------------- /test_case/API/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/API/__init__.py -------------------------------------------------------------------------------- /test_case/API/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/API/conftest.py -------------------------------------------------------------------------------- /test_case/API/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/API/test_api.py -------------------------------------------------------------------------------- /test_case/UI/demo1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/UI/demo1/__init__.py -------------------------------------------------------------------------------- /test_case/UI/demo1/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/UI/demo1/conftest.py -------------------------------------------------------------------------------- /test_case/UI/demo1/test_demo1_case.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/UI/demo1/test_demo1_case.yaml -------------------------------------------------------------------------------- /test_case/UI/demo1/test_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/UI/demo1/test_ui.py -------------------------------------------------------------------------------- /test_case/UI/demo2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/UI/demo2/__init__.py -------------------------------------------------------------------------------- /test_case/UI/demo2/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/UI/demo2/conftest.py -------------------------------------------------------------------------------- /test_case/UI/demo2/test_demo2_case.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/UI/demo2/test_demo2_case.yaml -------------------------------------------------------------------------------- /test_case/UI/demo2/test_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/UI/demo2/test_ui.py -------------------------------------------------------------------------------- /test_case/UI/demo3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/UI/demo3/__init__.py -------------------------------------------------------------------------------- /test_case/UI/demo3/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/UI/demo3/conftest.py -------------------------------------------------------------------------------- /test_case/UI/demo3/test_demo3_case.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/UI/demo3/test_demo3_case.yaml -------------------------------------------------------------------------------- /test_case/UI/demo3/test_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/UI/demo3/test_ui.py -------------------------------------------------------------------------------- /test_case/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/test_case/__init__.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/tools/data_process.py -------------------------------------------------------------------------------- /tools/email_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/tools/email_send.py -------------------------------------------------------------------------------- /tools/encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/tools/encode.py -------------------------------------------------------------------------------- /tools/generate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/tools/generate_data.py -------------------------------------------------------------------------------- /tools/read_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/tools/read_file.py -------------------------------------------------------------------------------- /tools/sql_operate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-eight800/autotest/HEAD/tools/sql_operate.py --------------------------------------------------------------------------------