最新公告
  • 欢迎您光临学IT那点事,本站秉承服务宗旨 履行“站长”责任,销售只是起点 服务永无止境!立即加入我们
  • 北梦测软件测试入门课程资料包【非视频】

    北梦测软件测试入门课程资料包【非视频】 最后编辑:2025-02-07
    会员服务: 网盘下载 自动提取 学习指导 环境配置二次开发BUG修复

    课程介绍

    课程概述

    北梦测软件测试入门课程是一个全面且实用的入门课程,旨在为新手提供软件测试基础知识。本课程涵盖了软件测试的核心概念、实践和工具,使学员能够快速上手并胜任软件测试入门级角色。

    资料包内容

    本资料包包含以下内容:

    1. 课程视频

    • 60+ 个全高清视频课程,涵盖软件测试各个方面。
    • 专家级讲师讲解,内容丰富、通俗易懂。

    2. 课程讲义

    • 配套课程视频的详细讲义,方便学习和回顾。
    • 包含代码示例、练习题和实操案例。

    3. 实操练习

    • 5 个以上的实操练习,帮助学员巩固所学知识。
    • 提供详细的解决方案和指导,确保学员真正掌握技能。

    4. 测试工具指南

    • 介绍 Selenium、Appium、Jmeter 等热门测试工具。
    • 提供工具使用指南和实际操作案例。

    5. 真实项目案例

    • 分享实际软件测试项目案例,让学员了解真实工作流程。
    • 提供案例分析和解决方案,提升学员的实践能力。

    6. 面试指南

    • 指导学员如何准备软件测试面试。
    • 提供常见面试题库和回答技巧。

    目标受众

    本课程资料包适用于以下人群:

    • 希望转行到软件测试领域的初学者
    • 想要提高软件测试技能的 QA 工程师
    • 需要了解软件测试的开发人员和项目经理

    课程优势

    • 系统全面:涵盖软件测试从入门到进阶的所有核心知识。
    • 注重实践:通过实操练习和真实案例巩固所学知识。
    • 经验丰富讲师:由行业专家授课,确保课程内容权威和实用。
    • 灵活学习:可随时随地在线学习,不受时间和地点限制。
    • 性价比高:提供全面的学习资料,性价比远高于市面同类型课程。

    课程目录

    /15-015-北梦测软件测试入门课程资料包/
    │├─1-软件测试基础入门理论(禅道虚拟机在接口的虚拟机中合到一起了)
    │├─10-App的ui自动化
    │├─11-APP和小程序课程(陈老师去年讲的版本,今年的在加油更新中,一旦更新,这里的视频就会删掉,以后直接看cctalk)
    │├─13-接口自动化(陈老师版本的,后面杰哥2024版本的更新了,这里就下架,后面直接在cctalk上观看,可能要等半个多月了)
    │├─2-Linux
    │├─3-MySQL入门
    │├─4-web项目实操
    │├─5-接口测试+Jmeter
    │├─6-Jmeter性能测试入门
    │├─7-Python基础入门
    │├─8-接口自动化
    │├─9-UI自动化
    10-App的ui自动化/
    │├─6 app自动化授课资料.zip 2GB
    │├─app的ui自动化源码
    │app的ui自动化源码/
    ││├─ydzdh
    ││ydzdh/
    │││├─PO(125~145)
    │││├─allure(163~169)
    │││├─appium_api(53~97)
    │││├─git
    │││├─pytest(100~123)
    │││├─toast+webview(170~175)
    │││├─yaml(146~162)
    │││PO(125~145)/
    ││││├─.idea
    ││││├─V1_项目准备
    ││││├─V2_把测试脚本按照功能进行拆分
    ││││├─V3_抽取前置代码
    ││││├─V4_抽取操作到page
    ││││├─V5_抽取元素和定位方法
    ││││├─V6_优化base_action
    ││││├─V7_按照page页面进行划分
    ││││├─V8_page统一入口
    ││││├─VV_综合案例
    ││││.idea/
    │││││├─PO.iml 464byte
    │││││├─encodings.xml 205byte
    │││││├─misc.xml 294byte
    │││││├─modules.xml 263byte
    │││││├─workspace.xml 33.2KB
    ││││V1_项目准备/
    │││││├─__init__.py
    │││││├─pytest.ini 122byte
    │││││├─scripts
    │││││scripts/
    ││││││├─__init__.py
    ││││││├─test_setting.py 1.9KB
    ││││V2_把测试脚本按照功能进行拆分/
    │││││├─__init__.py
    │││││├─pytest.ini 122byte
    │││││├─scripts
    │││││scripts/
    ││││││├─__init__.py
    ││││││├─test_display.py 1KB
    ││││││├─test_more.py 1.5KB
    ││││V3_抽取前置代码/
    │││││├─__init__.py
    │││││├─base
    │││││├─pytest.ini 122byte
    │││││├─scripts
    │││││base/
    ││││││├─__init__.py
    ││││││├─base_driver.py 454byte
    │││││scripts/
    ││││││├─__init__.py
    ││││││├─test_display.py 717byte
    ││││││├─test_more.py 1.1KB
    ││││V4_抽取操作到page/
    │││││├─__init__.py
    │││││├─base
    │││││├─page
    │││││├─pytest.ini 122byte
    │││││├─scripts
    │││││base/
    ││││││├─__init__.py
    ││││││├─base_driver.py 454byte
    │││││page/
    ││││││├─__init__.py
    ││││││├─display_page.py 631byte
    ││││││├─more_page.py 735byte
    │││││scripts/
    ││││││├─__init__.py
    ││││││├─test_display.py 676byte
    ││││││├─test_more.py 964byte
    ││││V5_抽取元素和定位方法/
    │││││├─__init__.py
    │││││├─base
    │││││├─page
    │││││├─pytest.ini 122byte
    │││││├─scripts
    │││││base/
    ││││││├─__init__.py
    ││││││├─base_action.py 198byte
    ││││││├─base_driver.py 454byte
    │││││page/
    ││││││├─__init__.py
    ││││││├─display_page.py 1.2KB
    ││││││├─more_page.py 1.4KB
    │││││scripts/
    ││││││├─__init__.py
    ││││││├─test_display.py 692byte
    ││││││├─test_more.py 980byte
    ││││V6_优化base_action/
    │││││├─__init__.py
    │││││├─base
    │││││├─page
    │││││├─pytest.ini 122byte
    │││││├─scripts
    │││││base/
    ││││││├─__init__.py
    ││││││├─base_action.py 1.2KB
    ││││││├─base_driver.py 403byte
    │││││page/
    ││││││├─__init__.py
    ││││││├─display_page.py 1000byte
    ││││││├─more_page.py 1.2KB
    │││││scripts/
    ││││││├─__init__.py
    ││││││├─test_display.py 681byte
    ││││││├─test_more.py 962byte
    ││││V7_按照page页面进行划分/
    │││││├─__init__.py
    │││││├─base
    │││││├─page
    │││││├─pytest.ini 122byte
    │││││├─scripts
    │││││base/
    ││││││├─__init__.py
    ││││││├─base_action.py 1.2KB
    ││││││├─base_driver.py 403byte
    │││││page/
    ││││││├─__init__.py
    ││││││├─display_page.py 350byte
    ││││││├─mobile_network_page.py 705byte
    ││││││├─more_page.py 363byte
    ││││││├─search_page.py 510byte
    ││││││├─setting_page.py 489byte
    │││││scripts/
    ││││││├─__init__.py
    ││││││├─test_display.py 957byte
    ││││││├─test_more.py 1.3KB
    ││││V8_page统一入口/
    │││││├─__init__.py
    │││││├─base
    │││││├─page
    │││││├─pytest.ini 122byte
    │││││├─scripts
    │││││base/
    ││││││├─__init__.py
    ││││││├─base_action.py 1.2KB
    ││││││├─base_driver.py 403byte
    │││││page/
    ││││││├─__init__.py
    ││││││├─display_page.py 338byte
    ││││││├─mobile_network_page.py 693byte
    ││││││├─more_page.py 351byte
    ││││││├─page.py 817byte
    ││││││├─search_page.py 498byte
    ││││││├─setting_page.py 477byte
    │││││scripts/
    ││││││├─__init__.py
    ││││││├─test_display.py 647byte
    ││││││├─test_more.py 988byte
    ││││VV_综合案例/
    │││││├─__init__.py
    │││││├─base
    │││││├─page
    │││││├─pytest.ini 122byte
    │││││├─scripts
    │││││base/
    ││││││├─__init__.py
    ││││││├─base_action.py 1.2KB
    ││││││├─base_driver.py 479byte
    │││││page/
    ││││││├─__init__.py
    ││││││├─contact_list_page.py 337byte
    ││││││├─new_contact_page.py 482byte
    ││││││├─page.py 400byte
    │││││scripts/
    ││││││├─__init__.py
    ││││││├─test_contact.py 795byte
    │││allure(163~169)/
    ││││├─.idea
    ││││├─base
    ││││├─page
    ││││├─pytest.ini 141byte
    ││││├─report
    ││││├─scripts
    ││││.idea/
    │││││├─allure.iml 464byte
    │││││├─encodings.xml 205byte
    │││││├─misc.xml 294byte
    │││││├─modules.xml 271byte
    │││││├─workspace.xml 12.2KB
    ││││base/
    │││││├─__init__.py
    │││││├─base_action.py 1.2KB
    │││││├─base_driver.py 403byte
    ││││page/
    │││││├─__init__.py
    │││││├─page.py 330byte
    │││││├─search_page.py 764byte
    │││││├─setting_page.py 372byte
    ││││report/
    │││││├─2e25813c-7ab2-4072-bb08-1e52c334e771-attachment.png 22.5KB
    │││││├─a470d0e0-af9e-4c70-9676-1c7d17bcd066-attachment.txt 6byte
    │││││├─de4284e1-04f7-4475-ba2d-503fde1b4255-testsuite.xml 3KB
    │││││├─e5fb3ef0-9aa7-4776-94d6-d66178e81c0e-attachment.png 20.7KB
    │││││├─f76cb299-ed20-493e-9700-47f02c07ba29-attachment.txt 8byte
    │││││├─html
    │││││html/
    ││││││├─app.js 709.4KB
    ││││││├─data
    ││││││├─export
    ││││││├─favicon.ico 14.7KB
    ││││││├─history
    ││││││├─index.html 657byte
    ││││││├─plugins
    ││││││├─styles.css 1.6MB
    ││││││├─widgets
    ││││││data/
    │││││││├─attachments
    │││││││├─behaviors.csv 101byte
    │││││││├─behaviors.json 879byte
    │││││││├─categories.csv
    │││││││├─categories.json 97byte
    │││││││├─packages.json 1KB
    │││││││├─suites.csv 283byte
    │││││││├─suites.json 1KB
    │││││││├─test-cases
    │││││││├─timeline.json 1.2KB
    │││││││attachments/
    ││││││││├─1db357263133aa9d.txt 8byte
    ││││││││├─20ee24ac333bbc7d.png 20.7KB
    ││││││││├─65dd08f520142992.txt 6byte
    ││││││││├─bd412b8f6fe6ed53.png 22.5KB
    │││││││test-cases/
    ││││││││├─d167fb61b8210e8a.json 3.2KB
    ││││││││├─f170e0d8a8eca901.json 3.2KB
    ││││││export/
    │││││││├─influxDbData.txt 503byte
    │││││││├─mail.html 148byte
    │││││││├─prometheusData.txt 283byte
    ││││││history/
    │││││││├─categories-trend.json 24byte
    │││││││├─duration-trend.json 51byte
    │││││││├─history-trend.json 141byte
    │││││││├─history.json 835byte
    │││││││├─retry-trend.json 60byte
    ││││││plugins/
    │││││││├─behaviors
    │││││││├─junit
    │││││││├─packages
    │││││││├─screen-diff
    │││││││├─trx
    │││││││├─xctest
    │││││││├─xunit-xml
    │││││││behaviors/
    ││││││││├─index.js 2.3KB
    │││││││packages/
    ││││││││├─index.js 1.2KB
    │││││││screen-diff/
    ││││││││├─index.js 3.8KB
    ││││││││├─styles.css 394byte
    ││││││widgets/
    │││││││├─behaviors.json 37byte
    │││││││├─categories-trend.json 24byte
    │││││││├─categories.json 37byte
    │││││││├─duration-trend.json 51byte
    │││││││├─duration.json 600byte
    │││││││├─environment.json 3byte
    │││││││├─executors.json 3byte
    │││││││├─history-trend.json 141byte
    │││││││├─launch.json 3byte
    │││││││├─retry-trend.json 60byte
    │││││││├─severity.json 600byte
    │││││││├─status-chart.json 600byte
    │││││││├─suites.json 272byte
    │││││││├─summary.json 385byte
    ││││scripts/
    │││││├─__init__.py
    │││││├─test_search.py 659byte
    │││appium_api(53~97)/
    ││││├─.idea
    ││││├─53 hello_appium.py 372byte
    ││││├─54 hello_appium参数解释.py 821byte
    ││││├─57 基础操作api_脚本内启动其它app.py 485byte
    ││││├─58 基础操作api_获取包名和界面名.py 588byte
    ││││├─59 基础操作api_关闭app和驱动对象.py 591byte
    ││││├─60 基础操作api_安装卸载以及判断是否安装.py 774byte
    ││││├─61 基础操作api_把应用置于后台.py 862byte
    ││││├─65 元素定位api_定位一个元素.py 1.1KB
    ││││├─66 元素定位api_定位一组元素.py 1.1KB
    ││││├─69 元素等待_隐式等待.py 732byte
    ││││├─70 元素等待_显式等待.py 844byte
    ││││├─73 元素操作API_点击元素.py 526byte
    ││││├─74 元素操作API_输入和清空输入框.py 876byte
    ││││├─75 元素操作API_获取元素的文本内容.py 747byte
    ││││├─76 元素操作API_获取元素位置.py 694byte
    ││││├─77 元素操作API_获取元素大小.py 691byte
    ││││├─78 元素操作API_获取元素的属性值.py 1KB
    ││││├─80 滑动和拖拽事件_swipe滑动方法.py 786byte
    ││││├─81 滑动和拖拽事件_scroll滑动方法.py 610byte
    ││││├─82 滑动和拖拽事件_drag_and_drop拖拽方法.py 617byte
    ││││├─85 TouchAction_轻敲操作.py 737byte
    ││││├─86 TouchAction_按下和抬起操作.py 781byte
    ││││├─87 TouchAction_等待操作.py 797byte
    ││││├─88 TouchAction_长按操作.py 880byte
    ││││├─90 TouchAction_移动操作.py 780byte
    ││││├─92 手机操作API_获取手机分辨率.py 588byte
    ││││├─93 手机操作API_获取手机截图.py 597byte
    ││││├─95 手机操作API_获取和设置手机网络.py 1.6KB
    ││││├─96 手机操作API_发送键到设备.py 718byte
    ││││├─97 手机操作API_操作手机通知栏.py 522byte
    ││││├─screenshot
    ││││.idea/
    │││││├─appium_api.iml 464byte
    │││││├─encodings.xml 205byte
    │││││├─misc.xml 294byte
    │││││├─modules.xml 279byte
    │││││├─workspace.xml 40KB
    ││││screenshot/
    │││││├─__init__.py
    │││││├─screen20200313135923118.png 55.3KB
    │││││├─screen20200313140019954.png 55.5KB
    │││git/
    ││││├─.gitignore 1.3KB
    ││││├─.idea
    ││││├─.pytest_cache
    ││││├─demo.py 415byte
    ││││├─pytest.ini 141byte
    ││││├─report
    ││││├─scripts
    ││││.idea/
    │││││├─encodings.xml 205byte
    │││││├─git.iml 464byte
    │││││├─misc.xml 294byte
    │││││├─modules.xml 265byte
    │││││├─vcs.xml 185byte
    │││││├─workspace.xml 10.1KB
    ││││.pytest_cache/
    │││││├─.gitignore 51byte
    │││││├─README.md 303byte
    │││││├─v
    │││││v/
    ││││││├─cache
    ││││││cache/
    │││││││├─lastfailed 58byte
    │││││││├─nodeids 101byte
    │││││││├─stepwise 2byte
    ││││report/
    │││││├─1b9a049f-fd9a-459b-882a-3c5581e040d5-testsuite.xml 1.4KB
    │││││├─html
    │││││html/
    ││││││├─app.js 709.4KB
    ││││││├─data
    ││││││├─export
    ││││││├─favicon.ico 14.7KB
    ││││││├─history
    ││││││├─index.html 657byte
    ││││││├─plugins
    ││││││├─styles.css 1.6MB
    ││││││├─widgets
    ││││││data/
    │││││││├─attachments
    │││││││├─behaviors.csv 101byte
    │││││││├─behaviors.json 830byte
    │││││││├─categories.csv 96byte
    │││││││├─categories.json 751byte
    │││││││├─packages.json 980byte
    │││││││├─suites.csv 234byte
    │││││││├─suites.json 978byte
    │││││││├─test-cases
    │││││││├─timeline.json 1.1KB
    │││││││test-cases/
    ││││││││├─45e195a6a21f970b.json 1.4KB
    ││││││││├─ea58d54ba755bbfd.json 1.7KB
    ││││││export/
    │││││││├─influxDbData.txt 544byte
    │││││││├─mail.html 148byte
    │││││││├─prometheusData.txt 304byte
    ││││││history/
    │││││││├─categories-trend.json 54byte
    │││││││├─duration-trend.json 48byte
    │││││││├─history-trend.json 141byte
    │││││││├─history.json 881byte
    │││││││├─retry-trend.json 60byte
    ││││││plugins/
    │││││││├─behaviors
    │││││││├─junit
    │││││││├─packages
    │││││││├─screen-diff
    │││││││├─trx
    │││││││├─xctest
    │││││││├─xunit-xml
    │││││││behaviors/
    ││││││││├─index.js 2.3KB
    │││││││packages/
    ││││││││├─index.js 1.2KB
    │││││││screen-diff/
    ││││││││├─index.js 3.8KB
    ││││││││├─styles.css 394byte
    ││││││widgets/
    │││││││├─behaviors.json 37byte
    │││││││├─categories-trend.json 54byte
    │││││││├─categories.json 280byte
    │││││││├─duration-trend.json 48byte
    │││││││├─duration.json 549byte
    │││││││├─environment.json 3byte
    │││││││├─executors.json 3byte
    │││││││├─history-trend.json 141byte
    │││││││├─launch.json 3byte
    │││││││├─retry-trend.json 60byte
    │││││││├─severity.json 549byte
    │││││││├─status-chart.json 549byte
    │││││││├─suites.json 272byte
    │││││││├─summary.json 372byte
    ││││scripts/
    │││││├─__init__.py
    │││││├─__pycache__
    │││││├─test_demo.py 103byte
    │││││__pycache__/
    ││││││├─__init__.cpython-37.pyc 139byte
    ││││││├─test_demo.cpython-37-PYTEST.pyc 880byte
    │││pytest(100~123)/
    ││││├─.idea
    ││││├─pytest.ini 148byte
    ││││├─report
    ││││├─scripts
    ││││├─test_fixture_116_引用方式_参数引用.py 414byte
    ││││├─test_fixture_117_引用方式_装饰器引用.py 452byte
    ││││├─test_fixture_118_引用方式_扩展.py 771byte
    ││││├─test_fixture_119_参数_默认运行.py 392byte
    ││││├─test_fixture_120_参数_作用域.py 1.1KB
    ││││├─test_fixture_121_参数_参数化.py 217byte
    ││││├─test_fixture_122_返回值.py 244byte
    ││││├─test_fixture_123_返回值[扩展].py 270byte
    ││││├─test_基本使用_100_安装和运行方式.py 472byte
    ││││├─test_基本使用_101_函数级前置和后置方法.py 289byte
    ││││├─test_基本使用_102_类级前置和后置方法.py 483byte
    ││││├─test_常用插件_106_控制函数执行顺序.py 177byte
    ││││├─test_常用插件_107_控制函数执行顺序.py 814byte
    ││││├─test_高级用法_109_跳过测试函数.py 573byte
    ││││├─test_高级用法_110_预期失败.py 637byte
    ││││├─test_高级用法_111_数据参数化_不使用.py 192byte
    ││││├─test_高级用法_112_数据参数化_单一参数.py 262byte
    ││││├─test_高级用法_113_数据参数化_多个参数.py 329byte
    ││││├─test_高级用法_114_数据参数化_推荐用法.py 381byte
    ││││.idea/
    │││││├─encodings.xml 205byte
    │││││├─misc.xml 294byte
    │││││├─modules.xml 271byte
    │││││├─pytest.iml 464byte
    │││││├─workspace.xml 16.1KB
    ││││report/
    │││││├─assets
    │││││├─report.html 15.4KB
    │││││assets/
    ││││││├─style.css 2.7KB
    ││││scripts/
    │││││├─__init__.py
    │││││├─test_demo.py 187byte
    │││││├─test_常用插件_108_失败重试.py 369byte
    │││toast+webview(170~175)/
    ││││├─.idea
    ││││├─demo_170.py 696byte
    ││││├─demo_172.py 1.3KB
    ││││├─webview_175.py 1.2KB
    ││││.idea/
    │││││├─encodings.xml 205byte
    │││││├─misc.xml 294byte
    │││││├─modules.xml 269byte
    │││││├─toast.iml 464byte
    │││││├─workspace.xml 13.8KB
    │││yaml(146~162)/
    ││││├─.idea
    ││││├─VV_综合案例_数据驱动
    ││││├─data.yaml 27byte
    ││││├─data.yml 2.1KB
    ││││├─demo_148.py 510byte
    ││││├─demo_154.py 199byte
    ││││├─demo_155.py 360byte
    ││││├─dump.yaml 86byte
    ││││.idea/
    │││││├─encodings.xml 205byte
    │││││├─misc.xml 294byte
    │││││├─modules.xml 267byte
    │││││├─workspace.xml 16.9KB
    │││││├─yaml.iml 464byte
    ││││VV_综合案例_数据驱动/
    │││││├─__init__.py
    │││││├─base
    │││││├─data
    │││││├─page
    │││││├─pytest.ini 122byte
    │││││├─scripts
    │││││base/
    ││││││├─__init__.py
    ││││││├─base_action.py 1.3KB
    ││││││├─base_analyze.py 305byte
    ││││││├─base_driver.py 479byte
    │││││data/
    ││││││├─__init__.py
    ││││││├─contact_data.yaml 349byte
    │││││page/
    ││││││├─__init__.py
    ││││││├─contact_list_page.py 350byte
    ││││││├─new_contact_page.py 495byte
    ││││││├─page.py 602byte
    ││││││├─saved_contact_page.py 292byte
    │││││scripts/
    ││││││├─__init__.py
    ││││││├─test_contact.py 1KB
    11-APP和小程序课程(陈老师去年讲的版本,今年的在加油更新中,一旦更新,这里的视频就会删掉,以后直接看cctalk)/
    │├─06移动端测试
    │├─18移动端补充+小程序测试
    │06移动端测试/
    ││├─2023-4-4移动端测试
    ││├─2023-6-8移动端测试
    ││├─作业.txt 407byte
    ││2023-4-4移动端测试/
    │││├─doc
    │││├─resources
    │││├─video
    │││doc/
    ││││├─APP测试.xmind 188KB
    ││││├─adb命令.md 8.2KB
    ││││├─假期作业.md 5.3KB
    ││││├─移动端测试-day01.docx 1.8MB
    │││resources/
    ││││├─adb
    ││││├─ldplayer9_ld_999_ld.exe 4.9MB
    ││││├─个人端.apk 30.4MB
    ││││adb/
    │││││├─AdbWinApi.dll 94KB
    │││││├─AdbWinUsbApi.dll 59.5KB
    │││││├─adb.exe 987.5KB
    │││││├─fastboot.exe 347.7KB
    │││video/
    ││││├─01课程介绍.mp4 5.6MB
    ││││├─02app测试流程.mp4 65.2MB
    ││││├─03安装和卸载.mp4 42.5MB
    ││││├─04UI测试.mp4 89.8MB
    ││││├─05功能测试.mp4 88.5MB
    ││2023-6-8移动端测试/
    │││├─doc
    │││├─resources
    │││├─video
    │││doc/
    ││││├─APP测试.xmind 196.3KB
    ││││├─adb命令.md 8.5KB
    ││││├─移动端测试-day01.docx 1.8MB
    │││resources/
    ││││├─adb
    ││││├─ldplayer9_ld_999_ld.exe 4.9MB
    ││││├─个人端.apk 30.4MB
    ││││adb/
    │││││├─AdbWinApi.dll 94KB
    │││││├─AdbWinUsbApi.dll 59.5KB
    │││││├─adb.exe 987.5KB
    │││││├─fastboot.exe 347.7KB
    │││video/
    ││││├─01交叉时间测试.mp4 20.1MB
    ││││├─02兼容测试.mp4 63.3MB
    ││││├─03升级更新测试.mp4 32.4MB
    ││││├─04用户体验和其他测试.mp4 39.5MB
    ││││├─05APP发布.mp4 23.6MB
    ││││├─06APP和web异同.mp4 23.1MB
    ││││├─07adb安装和基本命令.mp4 50.1MB
    ││││├─08monkey测试.mp4 60.4MB
    │18移动端补充+小程序测试/
    ││├─2023-7-15移动端补充+小程序测试
    ││2023-7-15移动端补充+小程序测试/
    │││├─code
    │││├─doc
    │││├─imgs
    │││├─resources
    │││├─video
    │││code/
    ││││├─.idea
    ││││├─01入门脚本.py 1.2KB
    ││││├─02定位方式.py 1.9KB
    ││││├─test.png 34.5KB
    ││││├─test.py 191byte
    ││││├─test.txt 11byte
    ││││.idea/
    │││││├─.gitignore 251byte
    │││││├─code.iml 405byte
    │││││├─inspectionProfiles
    │││││├─misc.xml 188byte
    │││││├─modules.xml 267byte
    │││││├─workspace.xml 10.8KB
    │││││inspectionProfiles/
    ││││││├─profiles_settings.xml 174byte
    │││doc/
    ││││├─APP测试要点.xmind 877KB
    ││││├─APP自动化测试(Python+APPium)-newDay1.doc 4.8MB
    ││││├─APP自动化测试(Python+APPium)-newDay2.doc 2MB
    ││││├─APP自动化测试(Python+APPium)-newDay3.doc 883.1KB
    ││││├─APP自动化测试(Python+APPium).doc 4.6MB
    ││││├─adb命令.md 8.1KB
    ││││├─appium环境搭建.md 2.5KB
    ││││├─小程序测试.md 1.7KB
    │││imgs/
    ││││├─调整机型.png 75.5KB
    ││││├─调试基础库.png 18.6KB
    ││││├─项目代码.png 15.6KB
    ││││├─预览真机缓存.png 9.8KB
    │││resources/
    ││││├─AirtestIDE-win-1.2.15.zip 252.8MB
    ││││├─AndriodSDK
    ││││├─AndriodSDK.rar 982.4MB
    ││││├─Appium-windows-1.18.3.exe 247MB
    ││││├─Node.js
    ││││├─adb
    ││││├─test.apk 30.4MB
    ││││├─wechat_devtools_1.06.2306020_win32_ia32.exe 136.3MB
    ││││├─小程序
    ││││├─小程序.zip 641.4KB
    ││││AndriodSDK/
    │││││├─Andriod_SDK.zip 443.8MB
    │││││├─Andriod_sdk.exe 144.6MB
    ││││Node.js/
    │││││├─node-v6.11.3-32位.msi 10.9MB
    │││││├─node-v6.11.3-x64位.msi 12.2MB
    ││││adb/
    │││││├─AdbWinApi.dll 94KB
    │││││├─AdbWinUsbApi.dll 59.5KB
    │││││├─adb.exe 987.5KB
    │││││├─fastboot.exe 347.7KB
    ││││小程序/
    │││││├─mina
    │││││mina/
    ││││││├─.idea
    ││││││├─app.js 2KB
    ││││││├─app.json 1.2KB
    ││││││├─app.wxss 218byte
    ││││││├─images
    ││││││├─pages
    ││││││├─project.config.json 597byte
    ││││││├─project.private.config.json 343byte
    ││││││├─utils
    ││││││├─wxParse
    ││││││.idea/
    │││││││├─.gitignore 342byte
    │││││││├─inspectionProfiles
    │││││││├─markdown-navigator
    │││││││├─mina.iml 281byte
    │││││││├─misc.xml 4.7KB
    │││││││├─modules.xml 260byte
    │││││││├─workspace.xml 9.9KB
    │││││││inspectionProfiles/
    ││││││││├─Project_Default.xml 2.3KB
    │││││││markdown-navigator/
    ││││││││├─profiles_settings.xml 104byte
    ││││││images/
    │││││││├─food.jpg 97.6KB
    │││││││├─more
    │││││││├─nav
    │││││││├─no-order.png 1.8KB
    │││││││├─order
    │││││││├─qd.png 19.1KB
    │││││││├─search-pic.png 2KB
    │││││││more/
    ││││││││├─confirm-word1.png 13KB
    ││││││││├─loading.gif 82.2KB
    ││││││││├─logo.png 5.7KB
    ││││││││├─title8.png 14.4KB
    ││││││││├─wave.png 7.5KB
    │││││││nav/
    ││││││││├─cart-off.png 1.1KB
    ││││││││├─cart-on.png 1.1KB
    ││││││││├─home-off.png 1KB
    ││││││││├─home-on.png 1KB
    ││││││││├─my-off.png 15.2KB
    ││││││││├─my-on.png 15.5KB
    ││││││││├─order-off.png 961byte
    ││││││││├─order-on.png 962byte
    │││││││order/
    ││││││││├─icon-address.png 9.8KB
    ││││││││├─icon-ddfh.png 4.9KB
    ││││││││├─icon-ddfk.png 4.6KB
    ││││││││├─icon-ddgb.png 3.7KB
    ││││││││├─icon-ddsh.png 3.8KB
    ││││││││├─icon-jycg.png 4.3KB
    ││││││││├─icon-wuliu.png 2.4KB
    ││││││pages/
    │││││││├─cart
    │││││││├─food
    │││││││├─index
    │││││││├─my
    │││││││├─order
    │││││││cart/
    ││││││││├─index.js 5.3KB
    ││││││││├─index.json 43byte
    ││││││││├─index.wxml 2KB
    ││││││││├─index.wxss 5KB
    │││││││food/
    ││││││││├─index.js 3.3KB
    ││││││││├─index.json 11byte
    ││││││││├─index.wxml 2.4KB
    ││││││││├─index.wxss 4.2KB
    ││││││││├─info.js 3.5KB
    ││││││││├─info.json 46byte
    ││││││││├─info.wxml 4.4KB
    ││││││││├─info.wxss 6.2KB
    │││││││index/
    ││││││││├─index.js 757byte
    ││││││││├─index.json 94byte
    ││││││││├─index.wxml 922byte
    ││││││││├─index.wxss 3.6KB
    │││││││my/
    ││││││││├─addressList.js 903byte
    ││││││││├─addressList.json 52byte
    ││││││││├─addressList.wxml 748byte
    ││││││││├─addressList.wxss 1.5KB
    ││││││││├─addressSet.js 2.7KB
    ││││││││├─addressSet.json 46byte
    ││││││││├─addressSet.wxml 1.9KB
    ││││││││├─addressSet.wxss 1.5KB
    ││││││││├─comment.js 814byte
    ││││││││├─comment.json 46byte
    ││││││││├─comment.wxml 901byte
    ││││││││├─comment.wxss 5.5KB
    ││││││││├─commentList.js 567byte
    ││││││││├─commentList.json 52byte
    ││││││││├─commentList.wxml 565byte
    ││││││││├─commentList.wxss 827byte
    ││││││││├─index.js 302byte
    ││││││││├─index.json 48byte
    ││││││││├─index.wxml 954byte
    ││││││││├─index.wxss 792byte
    ││││││││├─order_info.js 1.1KB
    ││││││││├─order_info.json 46byte
    ││││││││├─order_info.wxml 3KB
    ││││││││├─order_info.wxss 5.5KB
    ││││││││├─order_list.js 1.8KB
    ││││││││├─order_list.json 46byte
    ││││││││├─order_list.wxml 1.9KB
    ││││││││├─order_list.wxss 3.1KB
    │││││││order/
    ││││││││├─index.js 1.3KB
    ││││││││├─index.json 56byte
    ││││││││├─index.wxml 2.4KB
    ││││││││├─index.wxss 4.1KB
    ││││││utils/
    │││││││├─city.js 167.9KB
    │││││││├─util.js 472byte
    ││││││wxParse/
    │││││││├─emojis
    │││││││├─html2json.js 9.9KB
    │││││││├─htmlparser.js 5.5KB
    │││││││├─showdown.js 70.6KB
    │││││││├─wxParse.js 4.6KB
    │││││││├─wxParse.wxml 32.7KB
    │││││││├─wxParse.wxss 4KB
    │││││││emojis/
    ││││││││├─00.gif 1.8KB
    ││││││││├─01.gif 1.5KB
    ││││││││├─02.gif 1.8KB
    ││││││││├─03.gif 1.8KB
    ││││││││├─04.gif 1.9KB
    ││││││││├─05.gif 1.8KB
    ││││││││├─06.gif 3.5KB
    ││││││││├─07.gif 3.8KB
    ││││││││├─08.gif 4.6KB
    ││││││││├─09.gif 3.2KB
    ││││││││├─10.gif 3.6KB
    ││││││││├─100.gif 1.7KB
    ││││││││├─101.gif 2.4KB
    ││││││││├─102.gif 1.4KB
    ││││││││├─103.gif 2.1KB
    ││││││││├─104.gif 2.1KB
    ││││││││├─105.gif 1.2KB
    ││││││││├─106.gif 1KB
    ││││││││├─107.gif 1KB
    ││││││││├─108.gif 1KB
    ││││││││├─109.gif 1.1KB
    ││││││││├─11.gif 7.8KB
    ││││││││├─110.gif 1.1KB
    ││││││││├─111.gif 1KB
    ││││││││├─112.gif 1.1KB
    ││││││││├─113.gif 1015byte
    ││││││││├─114.gif 1003byte
    ││││││││├─115.gif 1KB
    ││││││││├─116.gif 996byte
    ││││││││├─117.gif 1KB
    ││││││││├─118.gif 1012byte
    ││││││││├─119.gif 1.1KB
    ││││││││├─12.gif 2.2KB
    ││││││││├─120.gif 1008byte
    ││││││││├─121.gif 1KB
    ││││││││├─122.gif 999byte
    ││││││││├─123.gif 1KB
    ││││││││├─124.gif 1022byte
    ││││││││├─125.gif 1013byte
    ││││││││├─126.gif 1KB
    ││││││││├─127.gif 956byte
    ││││││││├─128.gif 1022byte
    ││││││││├─129.gif 972byte
    ││││││││├─13.gif 1.7KB
    ││││││││├─130.gif 980byte
    ││││││││├─131.gif 945byte
    ││││││││├─132.gif 936byte
    ││││││││├─133.gif 1012byte
    ││││││││├─134.gif 968byte
    ││││││││├─14.gif 3.9KB
    ││││││││├─15.gif 1.5KB
    ││││││││├─16.gif 1.4KB
    ││││││││├─17.gif 3.3KB
    ││││││││├─18.gif 7.9KB
    ││││││││├─19.gif 7.9KB
    ││││││││├─20.gif 1.8KB
    ││││││││├─21.gif 1.8KB
    ││││││││├─22.gif 2.9KB
    ││││││││├─23.gif 1.9KB
    ││││││││├─24.gif 2.2KB
    ││││││││├─25.gif 2.4KB
    ││││││││├─26.gif 3.9KB
    ││││││││├─27.gif 2.8KB
    ││││││││├─28.gif 3.2KB
    ││││││││├─29.gif 5.7KB
    ││││││││├─30.gif 1.7KB
    ││││││││├─31.gif 5.1KB
    ││││││││├─32.gif 7KB
    ││││││││├─33.gif 4.2KB
    ││││││││├─34.gif 2.1KB
    ││││││││├─35.gif 13.1KB
    ││││││││├─36.gif 1.4KB
    ││││││││├─37.gif 1.2KB
    ││││││││├─38.gif 1.6KB
    ││││││││├─39.gif 1.8KB
    ││││││││├─40.gif 9.9KB
    ││││││││├─41.gif 3.3KB
    ││││││││├─42.gif 13.1KB
    ││││││││├─43.gif 4.2KB
    ││││││││├─44.gif 1.5KB
    ││││││││├─45.gif 4.6KB
    ││││││││├─46.gif 5KB
    ││││││││├─47.gif 3.6KB
    ││││││││├─48.gif 1.7KB
    ││││││││├─49.gif 6.2KB
    ││││││││├─50.gif 3KB
    ││││││││├─51.gif 3.6KB
    ││││││││├─52.gif 1.5KB
    ││││││││├─53.gif 2KB
    ││││││││├─54.gif 2.3KB
    ││││││││├─55.gif 1.5KB
    ││││││││├─56.gif 1.1KB
    ││││││││├─57.gif 5KB
    ││││││││├─58.gif 2.5KB
    ││││││││├─59.gif 1.5KB
    ││││││││├─60.gif 2.6KB
    ││││││││├─61.gif 1.1KB
    ││││││││├─62.gif 1.2KB
    ││││││││├─63.gif 971byte
    ││││││││├─64.gif 988byte
    ││││││││├─65.gif 5.2KB
    ││││││││├─66.gif 1.1KB
    ││││││││├─67.gif 2.7KB
    ││││││││├─68.gif 4.1KB
    ││││││││├─69.gif 1015byte
    ││││││││├─70.gif 1.1KB
    ││││││││├─71.gif 824byte
    ││││││││├─72.gif 3.6KB
    ││││││││├─73.gif 2.1KB
    ││││││││├─74.gif 2.4KB
    ││││││││├─75.gif 1.2KB
    ││││││││├─76.gif 1.2KB
    ││││││││├─77.gif 1.1KB
    ││││││││├─78.gif 1.5KB
    ││││││││├─79.gif 1.5KB
    ││││││││├─80.gif 1.5KB
    ││││││││├─81.gif 1.6KB
    ││││││││├─82.gif 1.5KB
    ││││││││├─83.gif 1.6KB
    ││││││││├─84.gif 3.3KB
    ││││││││├─85.gif 1.5KB
    ││││││││├─86.gif 1.5KB
    ││││││││├─87.gif 1.5KB
    ││││││││├─88.gif 2.1KB
    ││││││││├─89.gif 1.2KB
    ││││││││├─90.gif 2.7KB
    ││││││││├─91.gif 654byte
    ││││││││├─92.gif 1.3KB
    ││││││││├─93.gif 1.1KB
    ││││││││├─94.gif 3.3KB
    ││││││││├─95.gif 2.9KB
    ││││││││├─96.gif 1.8KB
    ││││││││├─97.gif 5.2KB
    ││││││││├─98.gif 1.6KB
    ││││││││├─99.gif 2.2KB
    │││video/
    ││││├─01课程介绍.mp4 15MB
    ││││├─02移动端测试分类.mp4 23.3MB
    ││││├─03环境搭建.mp4 30.9MB
    ││││├─04入门脚本.mp4 44.5MB
    ││││├─05appium简介.mp4 59.7MB
    ││││├─06appium工具讲解.mp4 22MB
    ││││├─07appium元素定位工具.mp4 61.3MB
    ││││├─08基本api.mp4 117MB
    ││││├─09airtest简介.mp4 27.9MB
    ││││├─10微信小程序的拉取的导入项目.mp4 54.4MB
    ││││├─11微信开发者工具基本使用.mp4 46MB
    ││││├─12小程序的预览,真机,缓存.mp4 36.4MB
    ││││├─13小程序的上传版本管理和基础库.mp4 23.1MB
    13-接口自动化(陈老师版本的,后面杰哥2024版本的更新了,这里就下架,后面直接在cctalk上观看,可能要等半个多月了)/
    │├─13接口自动化项目
    │13接口自动化项目/
    ││├─2023-06-16接口自动化项目day01
    ││├─2023-06-17接口自动化项目day02
    ││├─2023-06-19接口自动化项目day03
    ││├─2023-06-20接口自动化项目day04
    ││├─2023-06-21接口自动化项目day05
    ││├─2023-06-25接口自动化项目day06
    ││├─2023-06-26接口自动化项目day07
    ││├─接口测试部分.pdf 514.6KB
    ││2023-06-16接口自动化项目day01/
    │││├─code
    │││├─doc
    │││├─resource
    │││├─video
    │││code/
    ││││├─.idea
    ││││├─01flask框架入门级别讲解.py 1.7KB
    ││││├─Common
    ││││├─Config
    ││││├─FlaskProjectApi.py 9.3KB
    ││││├─RsaTest
    ││││├─__pycache__
    ││││├─cfg.py 382byte
    ││││├─database.py 2.7KB
    ││││.idea/
    │││││├─.gitignore 295byte
    │││││├─code.iml 405byte
    │││││├─dataSources
    │││││├─dataSources.local.xml 444byte
    │││││├─dataSources.xml 549byte
    │││││├─inspectionProfiles
    │││││├─misc.xml 188byte
    │││││├─modules.xml 267byte
    │││││├─workspace.xml 14KB
    │││││dataSources/
    ││││││├─b6ced1dd-ff6e-4445-84b2-76725087ef77
    ││││││├─b6ced1dd-ff6e-4445-84b2-76725087ef77.xml 169.8KB
    ││││││b6ced1dd-ff6e-4445-84b2-76725087ef77/
    │││││││├─storage_v2
    │││││││storage_v2/
    ││││││││├─_src_
    ││││││││_src_/
    │││││││││├─schema
    │││││││││schema/
    ││││││││││├─information_schema.FNRwLQ.meta 76byte
    │││││inspectionProfiles/
    ││││││├─profiles_settings.xml 174byte
    ││││Common/
    │││││├─GenerateSign.py 746byte
    │││││├─OperationRedis.py 1.1KB
    │││││├─__init__.py 177byte
    │││││├─__pycache__
    │││││__pycache__/
    ││││││├─GenerateSign.cpython-37.pyc 857byte
    ││││││├─OperationRedis.cpython-37.pyc 1.3KB
    ││││││├─__init__.cpython-37.pyc 252byte
    ││││Config/
    │││││├─db.ini 110byte
    ││││RsaTest/
    │││││├─RsaTest.py 3.4KB
    │││││├─__init__.py 60byte
    │││││├─__pycache__
    │││││├─master-private.pem 886byte
    │││││├─master-public.pem 271byte
    │││││__pycache__/
    ││││││├─RsaTest.cpython-37.pyc 3.7KB
    ││││││├─__init__.cpython-37.pyc 258byte
    ││││__pycache__/
    │││││├─cfg.cpython-37.pyc 586byte
    │││││├─database.cpython-37.pyc 2KB
    │││doc/
    ││││├─flask开发后端接口.md 11.8KB
    ││││├─图书借阅系统接口文档.doc 81.5KB
    ││││├─接口测试_pytest框架.docx 767.9KB
    ││││├─数据库设计分析.md 325byte
    │││resource/
    ││││├─flask-test.postman_collection.json 5KB
    ││││├─代码
    ││││├─图书管理系统原型.rp 473.6KB
    ││││├─接口文档.xmind 75.9KB
    ││││代码/
    │││││├─01flask入门.py 814byte
    │││││├─BookProjectApi.py 7.3KB
    │││││├─Database.py 2.9KB
    │││video/
    ││││├─01项目简介.mp4 17.6MB
    ││││├─02flask基本认识.mp4 19.4MB
    ││││├─03flask基本使用.mp4 15.2MB
    ││││├─04不带参数的get请求.mp4 11.5MB
    ││││├─05get带参数的接口.mp4 8.2MB
    ││││├─06post传参获取.mp4 17.3MB
    ││││├─07数据库设置.mp4 34MB
    ││││├─08接口文档设计.mp4 135.7MB
    ││││├─09登录接口的基本逻辑.mp4 49.7MB
    ││││├─10登录接口token的生成与使用.mp4 38.1MB
    ││││├─11查询用户借阅信息的接口.mp4 56.1MB
    ││2023-06-17接口自动化项目day02/
    │││├─code
    │││├─doc
    │││├─img
    │││├─resource
    │││├─video
    │││code/
    ││││├─.idea
    ││││├─01flask框架入门级别讲解.py 1.7KB
    ││││├─Config
    ││││├─FlaskProjectApi.py 3.1KB
    ││││├─__pycache__
    ││││├─cfg.py 382byte
    ││││├─database.py 1.7KB
    ││││.idea/
    │││││├─.gitignore 295byte
    │││││├─code.iml 405byte
    │││││├─inspectionProfiles
    │││││├─misc.xml 188byte
    │││││├─modules.xml 267byte
    │││││├─workspace.xml 10.4KB
    │││││inspectionProfiles/
    ││││││├─profiles_settings.xml 174byte
    ││││Config/
    │││││├─db.ini 110byte
    ││││__pycache__/
    │││││├─cfg.cpython-37.pyc 601byte
    │││││├─database.cpython-37.pyc 1.8KB
    │││doc/
    ││││├─2023-6-17笔记.md 2.3KB
    ││││├─flask开发后端接口.md 11.8KB
    ││││├─图书借阅系统接口文档.doc 81.5KB
    ││││├─接口测试_pytest框架.docx 768KB
    ││││├─数据库设计分析.md 325byte
    ││││├─项目作业.md 332byte
    ││││├─项目信息.txt 399byte
    │││img/
    ││││├─接口文档1.png 36.2KB
    ││││├─接口文档2.png 42.3KB
    ││││├─接口文档3.png 42.5KB
    ││││├─接口文档4.png 19.5KB
    ││││├─接口文档5.png 51.2KB
    │││resource/
    ││││├─allure-2.13.8.zip 16.4MB
    ││││├─图书管理系统原型.rp 473.6KB
    ││││├─接口文档.xmind 75.9KB
    │││video/
    ││││├─01首页图书展示接口.mp4 15.4MB
    ││││├─02后台管理界面和搜索接口.mp4 25.3MB
    ││││├─03新增图书.mp4 43.5MB
    ││││├─04修改图书的接口.mp4 61.2MB
    ││││├─05删除接口.mp4 17.4MB
    ││││├─06postman设置关联.mp4 19.7MB
    ││││├─07swagger文档阅读.mp4 44.5MB
    ││││├─08多接口测试模块内的流程.mp4 42.5MB
    ││││├─09新增广告.mp4 32.8MB
    ││││├─10广告模块内流程.mp4 47.9MB
    ││2023-06-19接口自动化项目day03/
    │││├─code
    │││├─doc
    │││├─resource
    │││├─video
    │││code/
    ││││├─InterfaceTest
    ││││InterfaceTest/
    │││││├─.idea
    │││││├─.pytest_cache
    │││││├─Case
    │││││├─Config
    │││││├─Data
    │││││├─Interface
    │││││├─Report
    │││││├─Utils
    │││││├─allure-report
    │││││.idea/
    ││││││├─InterfaceTest.iml 405byte
    ││││││├─inspectionProfiles
    ││││││├─misc.xml 192byte
    ││││││├─modules.xml 285byte
    ││││││├─workspace.xml 13.7KB
    ││││││inspectionProfiles/
    │││││││├─Project_Default.xml 404byte
    │││││││├─profiles_settings.xml 174byte
    │││││.pytest_cache/
    ││││││├─.gitignore 39byte
    ││││││├─CACHEDIR.TAG 191byte
    ││││││├─README.md 310byte
    ││││││├─v
    ││││││v/
    │││││││├─cache
    │││││││cache/
    ││││││││├─lastfailed 414byte
    ││││││││├─nodeids 3.4KB
    ││││││││├─stepwise 2byte
    │││││Case/
    ││││││├─conftest.py 1.5KB
    │││││Config/
    ││││││├─TestUrl.py 207byte
    ││││││├─__init__.py 187byte
    ││││││├─__pycache__
    ││││││├─db.ini 115byte
    ││││││__pycache__/
    │││││││├─TestUrl.cpython-37.pyc 343byte
    │││││││├─__init__.cpython-37.pyc 266byte
    │││││Interface/
    ││││││├─AddressInterface.py 1.1KB
    ││││││├─CartInterface.py 3KB
    ││││││├─CouponInterface.py 771byte
    ││││││├─MemberInterface.py 2.6KB
    ││││││├─OrderInterface.py 1.4KB
    ││││││├─__pycache__
    ││││││__pycache__/
    │││││││├─MemberInterface.cpython-37.pyc 2.5KB
    │││││Report/
    ││││││├─01b4aa11-b516-42bf-9d34-c1c2b5ee3710-container.json 349byte
    ││││││├─024e31fd-88b1-4501-b866-bdf403889659-result.json 1.8KB
    ││││││├─0335944c-813c-4f0e-aa13-3bfb550a6448-container.json 349byte
    ││││││├─045f5dbb-d43e-435c-8ebd-08f9da77783a-container.json 258byte
    ││││││├─0563f446-7c33-49ce-ad54-241235118b33-container.json 349byte
    ││││││├─057bb20c-3594-486a-9358-00a01fa16a42-result.json 1.3KB
    ││││││├─09465019-3e27-480e-a300-4a3f2b5692dc-container.json 258byte
    ││││││├─0979655c-2647-4094-91eb-432767aee480-container.json 258byte
    ││││││├─09bae212-b41b-4b2d-8f59-f29d6d458e1c-result.json 2.2KB
    ││││││├─0a17ab2e-a384-48db-91b3-c731953f6b94-result.json 1.4KB
    ││││││├─0bce409d-3333-4bd3-b569-a157419ac1fc-container.json 258byte
    ││││││├─0befcbeb-b022-452a-9d67-f3a1c3129d3e-container.json 258byte
    ││││││├─11aca095-06d2-4739-8812-6349910484a5-container.json 349byte
    ││││││├─12cb0415-e302-4cf9-923d-b41d59a16e4b-result.json 3.3KB
    ││││││├─12e25a06-522b-4833-9898-c02d4d087a46-container.json 349byte
    ││││││├─132e0666-9209-40a7-a5c8-c1bcfc3f3183-container.json 258byte
    ││││││├─1441d2f4-3906-4bbf-9ad3-b0a45cab3738-result.json 3.3KB
    ││││││├─19d0e039-4e4b-48ab-b7cd-23c5ae8fe406-result.json 3.3KB
    ││││││├─19df04f8-0134-44bc-b631-df24bf44a419-result.json 970byte
    ││││││├─1a444302-8b78-4323-b253-b40b2b6b3f23-result.json 1.3KB
    ││││││├─1adf8163-5fed-4eae-a22b-af6ddd1064d7-result.json 3.3KB
    ││││││├─1cad5d64-caf5-4e38-aaba-b7473c02125f-result.json 3.3KB
    ││││││├─1e78806f-e0a4-4f63-8c57-5535e539b9e5-result.json 1.8KB
    ││││││├─1e8c8aee-be48-44d8-89b4-cee775016736-container.json 349byte
    ││││││├─20e6e05e-78b5-43af-ac56-638d5384260d-result.json 2.3KB
    ││││││├─2244aa2b-ecf7-4dd9-b55a-220cdd30b863-container.json 349byte
    ││││││├─23ab251f-29bb-4bc3-a51e-044690d0d75b-result.json 617byte
    ││││││├─2618f0d7-a4a8-4c52-a056-6fa1556debfe-result.json 1.3KB
    ││││││├─262de86c-550f-4d7d-bb12-3a50314a3190-container.json 258byte
    ││││││├─26c637da-4598-4877-8082-5fa73b71c67e-container.json 349byte
    ││││││├─26c64934-0635-48b4-b23e-952746b74c03-container.json 349byte
    ││││││├─28183428-9a3c-4eba-9d4d-66ec1db493e1-result.json 3.3KB
    ││││││├─28c4b4c4-69f9-409b-9e23-7ba9b506b4c3-result.json 2.3KB
    ││││││├─28edf759-641a-425d-a083-c44ee90cc711-container.json 349byte
    ││││││├─29642acc-df98-44eb-80c3-6eabd685c709-container.json 258byte
    ││││││├─2b7155cc-0e45-43c0-815a-9923b15d3c30-container.json 349byte
    ││││││├─2be5931b-1387-46b5-9984-9b4929caad09-container.json 349byte
    ││││││├─2c145333-fc11-44b3-9036-79478161ac97-result.json 1.4KB
    ││││││├─2c7edd03-beda-4566-babd-7a2b311869fd-container.json 349byte
    ││││││├─2d2c1341-353a-4c8d-a2ad-3a0151ca8852-container.json 349byte
    ││││││├─2e4a3465-5e6f-42b5-8fbb-f2b9b0fd8b91-result.json 3.3KB
    ││││││├─2f82d2e8-2603-4102-9c6b-3b66e133c3eb-container.json 349byte
    ││││││├─30b4b7fb-1eff-4ea4-9f26-c8b9b1de1fcc-container.json 258byte
    ││││││├─32819f4c-80fa-4be0-b780-6c76917dc73e-result.json 3.3KB
    ││││││├─378b9dbd-f0f7-4239-9494-bd3813b14225-result.json 948byte
    ││││││├─37b8efb0-b00f-4346-b4ce-c7cb3cbd6591-container.json 349byte
    ││││││├─37dab30b-9416-46c7-b380-2ef393749f51-container.json 749byte
    ││││││├─38d6bcc4-2b84-4284-9433-700f8ddb9968-result.json 3.3KB
    ││││││├─39076058-a2fc-4752-97a8-6bfe3437181a-container.json 258byte
    ││││││├─397e94a1-69b3-4a35-9f7b-0ffbc915cb96-container.json 749byte
    ││││││├─3a170531-8deb-449d-b102-d3b9957ea169-container.json 258byte
    ││││││├─3acc1ed8-e188-4d4c-a529-0ebdf719c813-container.json 349byte
    ││││││├─3b003235-3069-4d56-870e-5b3485fdf69a-container.json 258byte
    ││││││├─3cf51e7d-ed76-4dff-9b41-84632677038e-result.json 1.4KB
    ││││││├─3e856447-8c33-41e2-83ef-60de2dd33f4a-container.json 349byte
    ││││││├─3f137732-24de-49aa-9233-420db79f6ade-container.json 258byte
    ││││││├─412f8bc9-de1e-44e4-8b84-d16b441c04f7-container.json 349byte
    ││││││├─41d63df8-fb7e-4fde-bdbe-bcc2355d488c-container.json 349byte
    ││││││├─439b7392-662c-4517-adc8-4e185a906b06-result.json 1.8KB
    ││││││├─4600e7a4-d56c-436f-8662-de9826c12f63-result.json 1.3KB
    ││││││├─468266a4-e68b-45bb-a86e-3e5160cd52d0-container.json 258byte
    ││││││├─477dc6d7-cf9a-4f16-9841-2bbf6866a2e4-container.json 258byte
    ││││││├─490e5d31-2b8a-45e5-b364-149cd11b1454-container.json 258byte
    ││││││├─4a7b4bd2-354a-4ba2-ae9a-92fd50f59e81-result.json 3.3KB
    ││││││├─4b643c61-fcd2-4ccd-8705-3849669dfe3f-result.json 1.3KB
    ││││││├─4c089aa8-4458-49ec-b063-37f41f2d8351-container.json 258byte
    ││││││├─4dc53863-db0f-459c-80a3-289142cb7d61-result.json 1.3KB
    ││││││├─50049f1e-7120-44f1-b053-bd35704dae1d-container.json 349byte
    ││││││├─500aa24c-e897-4ac9-ae10-28beb1ad2fa6-container.json 349byte
    ││││││├─507cb444-6166-44a0-a474-e6ca127fc51e-container.json 349byte
    ││││││├─5135efa3-7341-4b2a-9912-f109b33cecbb-container.json 349byte
    ││││││├─527ebe4b-2d46-41a2-a01d-a67752e8a025-container.json 349byte
    ││││││├─52eaa394-8ea9-4c0f-8d9f-92a22d340649-container.json 258byte
    ││││││├─530b8ce0-eab2-441e-bc4b-d5a7368619f1-container.json 258byte
    ││││││├─53a71869-353a-4e23-b7bc-9d3927376589-container.json 258byte
    ││││││├─53d5fca2-51ed-43cb-bd70-c4ea6a9f4fc4-container.json 258byte
    ││││││├─5522d6b3-1b60-4330-a6fe-07308ffce1c9-container.json 258byte
    ││││││├─565469be-526e-44b0-8fa7-7461235466a4-container.json 349byte
    ││││││├─56b97d21-ef98-4334-9bf0-500fa2941c79-result.json 2.3KB
    ││││││├─58c41c63-f229-4e9b-9571-9e3debbabda7-container.json 258byte
    ││││││├─593c4332-493e-4dde-a45d-d2e0a9477934-container.json 258byte
    ││││││├─5963330a-60a7-4bcc-a438-7e4b1133318c-result.json 3.3KB
    ││││││├─5c859289-6634-447a-a802-1d1add61e8c4-result.json 616byte
    ││││││├─5d204634-68b9-4d95-a1d8-5faf59e4b2aa-container.json 258byte
    ││││││├─5e7e302d-b26f-4964-8b65-9046dbb751eb-container.json 349byte
    ││││││├─5e81e966-3ec2-470c-a0c2-f8e6028785f7-container.json 349byte
    ││││││├─5ebca28b-9473-4c3e-9680-2e6bcda1ce93-container.json 258byte
    ││││││├─605faf30-69f0-4a08-a17a-0ee174ad4a65-container.json 258byte
    ││││││├─60da2a1d-c904-40cf-b7a9-dc6284a3734a-result.json 3.3KB
    ││││││├─613a1903-4455-4034-989d-84c31872aa5a-container.json 258byte
    ││││││├─62abae20-307f-4b3d-948a-dd28e9284b6b-container.json 349byte
    ││││││├─63059b32-f6f9-4287-beea-382ece60dec0-container.json 349byte
    ││││││├─64834b40-a892-4713-9865-f5aeadeb077f-container.json 258byte
    ││││││├─651c1083-96f6-41cc-b16b-79449064c895-container.json 349byte
    ││││││├─65382904-9602-492f-b5f9-1e9356feb4b4-container.json 349byte
    ││││││├─699c61d0-3bb2-4df3-a872-85ab70c945a6-container.json 349byte
    ││││││├─6b3f9382-c128-497c-8f92-88ad62cb76d1-container.json 258byte
    ││││││├─6bbc43a8-d68b-403b-adb3-61897efd1ce3-result.json 2.2KB
    ││││││├─6ccd727c-2349-4b98-96e3-30cd119e2989-container.json 349byte
    ││││││├─6d1d4b6e-621a-4b84-846e-367907c6b5f9-container.json 258byte
    ││││││├─6ef665de-293d-4d3d-99e6-a69667dd07b9-container.json 258byte
    ││││││├─6f195cd3-1838-4609-ac2c-06480a847a6d-container.json 258byte
    ││││││├─6f420cf5-066e-483c-86ee-01fb723c8da9-container.json 258byte
    ││││││├─70c719e5-76b0-4acc-88d3-61dbda483ee8-container.json 258byte
    ││││││├─71a2427c-7502-43f8-a840-ad29aefefcd2-container.json 258byte
    ││││││├─73d68945-d4a1-4f58-8ffa-4f5e2527382f-result.json 1.3KB
    ││││││├─75342142-667b-4a64-9d3e-79b438714f5b-container.json 349byte
    ││││││├─7539edb1-3707-461b-81b6-0649ede15f8c-container.json 349byte
    ││││││├─7764a1fc-1594-4c0f-9590-cb1a1cfb09a6-result.json 2.2KB
    ││││││├─7a26cfa2-8942-4722-9bb8-83a6c75b9aea-result.json 3.3KB
    ││││││├─7a72516c-9204-4beb-a3c3-5401023141fb-container.json 749byte
    ││││││├─7b608823-04f6-430c-83d6-174675235be9-container.json 258byte
    ││││││├─7c67b6e3-330b-4498-803e-4f9093db8fce-result.json 3.3KB
    ││││││├─7c9a30e3-7064-4a3b-bcb0-4ab096ff5ffa-result.json 3.3KB
    ││││││├─7ce83326-e396-445f-a510-00bd2fc8c5b0-container.json 349byte
    ││││││├─7d09adda-88f4-464a-b78d-c2add1fdc20a-container.json 349byte
    ││││││├─7d1c7203-eaf0-4778-9de3-cd1266b8ca10-container.json 349byte
    ││││││├─7d8a37e2-6a01-4a85-bff0-6a6c1138554e-result.json 2.2KB
    ││││││├─7f723450-3d96-46cf-a33a-667460014350-container.json 258byte
    ││││││├─7f909160-a833-439c-9a5c-6a3968361aae-result.json 1.3KB
    ││││││├─82a3cc9f-ce7a-44e3-b80d-b8a50f3daf19-result.json 3.3KB
    ││││││├─82d819e0-0bd1-401d-ac0e-99fbcd09bb8e-result.json 2.3KB
    ││││││├─831ef2ec-6130-400b-90d2-6411e3969a32-container.json 258byte
    ││││││├─84937684-db57-4348-a4c6-a277592acfb1-result.json 957byte
    ││││││├─86c38853-d101-4947-b13f-2d62bbdc58b7-container.json 258byte
    ││││││├─86f6811c-e361-4a88-aa04-7f82787f5775-container.json 349byte
    ││││││├─87a43843-8aa1-4452-8802-eaa428234834-result.json 1.3KB
    ││││││├─882ee990-4781-4864-b6e2-aed9153ec653-result.json 1.3KB
    ││││││├─8a204ba4-5a87-40bd-bc7b-3ad306546a95-result.json 499byte
    ││││││├─8b3fbd99-07ac-4342-a246-16aad4253715-result.json 958byte
    ││││││├─8b7013a4-b685-4579-ac7a-a3e189cff592-result.json 3.3KB
    ││││││├─8bc900cc-cf22-4d60-8373-9c96516b9695-container.json 258byte
    ││││││├─8bf3b92e-e7bd-4d55-ae62-212113d915fe-container.json 349byte
    ││││││├─8dd355ec-1104-458d-889e-cd5a76e2116d-result.json 3.3KB
    ││││││├─8e26187e-ce22-4aa4-8ee2-8763ab1a9d04-container.json 349byte
    ││││││├─8ef25842-1666-4f8a-a58b-d893f26b439a-container.json 349byte
    ││││││├─8fd17012-6c03-42a7-a795-26b74f12331f-result.json 3.3KB
    ││││││├─90541948-d978-406c-808b-4747e7a69eb2-container.json 349byte
    ││││││├─909e848c-b788-4861-b5b3-3580d980f391-container.json 258byte
    ││││││├─912ebec7-f183-4b93-af58-e89df15e2d6e-container.json 258byte
    ││││││├─91a41562-6d37-4b14-9298-4e0c14c445dd-container.json 258byte
    ││││││├─930c607f-0a88-4b43-8333-2f28c2787eeb-container.json 349byte
    ││││││├─93709b0c-a010-4e29-8589-49f459b6c625-container.json 258byte
    ││││││├─948e2334-4644-406f-8cbc-e4968c0106ce-result.json 616byte
    ││││││├─98b2f2af-1649-4577-b613-174f2c4974e8-result.json 1.9KB
    ││││││├─98b5777e-896c-4e5c-ab70-2cb3da249b85-result.json 2.2KB
    ││││││├─98c51097-edba-49bd-9ef7-829492272581-result.json 3.3KB
    ││││││├─9914f8b4-624c-462f-92b4-865b8724514c-result.json 616byte
    ││││││├─9a8ace31-c929-44ab-a848-bd05a5a8743c-container.json 349byte
    ││││││├─9b3ad1fb-3129-4896-b94f-6baa8ce8acc4-container.json 258byte
    ││││││├─9b6a155c-34dd-4522-9046-cbf2d5fd12b9-container.json 349byte
    ││││││├─9c794b15-e12d-42e0-9144-a39ab50a20a8-result.json 2.2KB
    ││││││├─9c7fe5f1-04b1-4bc5-8ef9-dda71c2fa46f-container.json 258byte
    ││││││├─9cfb751d-3c06-48a2-86fa-d72dc69c3884-container.json 258byte
    ││││││├─9d17621c-9c0e-410b-a894-259b93a49dbc-container.json 349byte
    ││││││├─9fa0e0bd-d502-44f5-9f95-a1a653805a1c-container.json 258byte
    ││││││├─a0f0b44f-f4e4-4fee-a7d8-d0ab46517746-container.json 258byte
    ││││││├─a643af71-b85f-4e5f-bfc1-bb0d6e424105-container.json 749byte
    ││││││├─a8912469-15e7-4f14-b034-4a55d08325a0-container.json 349byte
    ││││││├─a9e11194-cb28-49de-ad31-632a8c0b1dde-container.json 349byte
    ││││││├─ab31bb2c-94fb-4597-900d-c9f78aabed7f-container.json 258byte
    ││││││├─ad298f06-a134-4097-bb9d-25743067df89-container.json 749byte
    ││││││├─ade51f8e-3007-470d-9e92-0d111351d155-container.json 258byte
    ││││││├─b24a500e-791e-461f-8043-6820a6dff575-container.json 349byte
    ││││││├─b39346df-54f0-4b7f-91ac-12633c0e57b0-container.json 258byte
    ││││││├─b43d9623-9250-4f1e-8222-ddcc33f64c7e-container.json 349byte
    ││││││├─b4d6e498-ca49-4411-b2e4-1405a8838abf-result.json 3.3KB
    ││││││├─b530b8ec-56e2-47d2-beab-8d33c69fbe70-container.json 258byte
    ││││││├─b6e0f262-a07f-4a81-a397-8fa8db8ff880-container.json 258byte
    ││││││├─b82fb0f3-9b20-48c2-a3d6-98c8d8261c19-container.json 258byte
    ││││││├─b8d9d68a-ade5-4311-81ab-4cd7cbf5e3ed-container.json 749byte
    ││││││├─b8f7d98e-96ce-49c3-914c-1d2ddd87734d-container.json 258byte
    ││││││├─babeef23-462f-4118-b7de-bdfbc2b5ba2b-result.json 3.3KB
    ││││││├─bb33e59b-47d3-49ff-b568-405d0b649554-container.json 349byte
    ││││││├─bcf94ec1-a85f-43db-a747-5d3394115e9a-container.json 258byte
    ││││││├─be05b1e0-1b05-4aa1-b5df-b61646dada63-result.json 617byte
    ││││││├─be0ac4e8-75f0-4c88-bd1e-c91176c31b50-container.json 429byte
    ││││││├─be16c83b-0984-46da-bdcb-ac48df762fc5-container.json 349byte
    ││││││├─be8dd587-7d5a-40d2-9d03-f146dc229ccb-container.json 349byte
    ││││││├─beb6b33e-4322-47a9-ae8a-fde2cd960362-container.json 258byte
    ││││││├─bf11f05c-191c-4f0f-b912-13e6f16bcded-container.json 349byte
    ││││││├─c0986b66-0dce-4478-8a8e-de47a97e73c3-container.json 349byte
    ││││││├─c42430a1-4786-4d3d-ac55-1f9f78e79cad-container.json 258byte
    ││││││├─c42eb62d-5d92-4b0f-a607-00e634d446b1-container.json 349byte
    ││││││├─c44360c5-8df9-4dda-9643-e957c2da82c2-container.json 258byte
    ││││││├─c8af7dfe-1b65-46e6-b5d4-f0369bced8d4-container.json 258byte
    ││││││├─c969e931-5fad-4c15-b101-3ec5ab66703a-result.json 968byte
    ││││││├─ca3279ed-7078-4053-9efd-6f26f0da3cab-container.json 349byte
    ││││││├─cd424eb2-8f0e-4794-aec8-732253a1f096-container.json 349byte
    ││││││├─ce1750ca-32d3-4f20-89cb-6ca29ddc9ce5-result.json 1.3KB
    ││││││├─ce321e6e-c7d0-4f55-a960-4faaea5fb2f2-container.json 258byte
    ││││││├─ce3741ab-b89f-440d-aa2c-e008ed78a557-container.json 258byte
    ││││││├─ce7d6cdb-691c-4e69-a0b9-fcabd71548d3-result.json 967byte
    ││││││├─d19f0abb-e5c5-4b97-93f0-1ac21749ceaf-result.json 3.3KB
    ││││││├─d2353767-b006-49cb-aaed-65c3fba843ca-container.json 258byte
    ││││││├─d3ee746a-84ac-4739-b3b4-455321560225-container.json 349byte
    ││││││├─d46ed709-92f7-42a3-97db-a83ae224997a-result.json 3.3KB
    ││││││├─d59cae0f-cb05-416d-8eb7-63cb70397a0d-container.json 349byte
    ││││││├─d624c990-ec37-42d0-9ecc-0007526e15b8-result.json 3.3KB
    ││││││├─d6a45713-7e76-4b08-971c-bf8adb710cc3-container.json 349byte
    ││││││├─d6eaa9ae-7d4c-4979-8e5c-fe3199cea06e-container.json 349byte
    ││││││├─d8f46d71-dad3-4f35-960f-acdf6b5ae2fd-result.json 1.3KB
    ││││││├─d967fe1e-2c0a-470c-b644-387a04ab9c51-container.json 349byte
    ││││││├─d99efbdb-f5a9-48d4-820e-46a038d1a93c-container.json 258byte
    ││││││├─d9b39eff-6052-49c3-a952-89eb43290364-container.json 258byte
    ││││││├─dad7f4db-85a5-4711-978b-ae357ca9d222-container.json 349byte
    ││││││├─db237286-3dfb-4f46-bc09-f3092521725e-result.json 617byte
    ││││││├─dc122a07-e48a-452b-92d2-5297e4ce7117-result.json 3.3KB
    ││││││├─dc6bc3ab-dda1-453b-8561-ae7edbb66c62-container.json 349byte
    ││││││├─de487d6e-411f-43f1-848e-45800f983757-result.json 2.2KB
    ││││││├─df6e7b47-9e48-47a3-979d-9a98d49f18c0-result.json 3.3KB
    ││││││├─dfafe744-5d67-4078-a22c-2a5c2364fc52-result.json 1.3KB
    ││││││├─e134f44e-8ddb-47e3-9ba4-b77ad800cde6-result.json 53.2KB
    ││││││├─e2948f68-62d8-467b-baed-dff6964d51bc-result.json 617byte
    ││││││├─e2da4875-636f-4a52-a6fc-781e6ac5e684-result.json 1.4KB
    ││││││├─e2f89e41-48e0-4f59-bad3-7145bba455d8-container.json 258byte
    ││││││├─e4d2e558-f5f6-4929-804f-9c2ba6a793ab-result.json 53.2KB
    ││││││├─e4de0227-5389-4409-9db6-1813f03e19ae-result.json 2.2KB
    ││││││├─e62b4cd8-9f5a-4f59-a36c-b1a9f362560b-container.json 258byte
    ││││││├─e68cfaa0-51e7-4f2e-8028-dc96ffbc2f00-container.json 349byte
    ││││││├─e766640e-ce43-4df3-8d65-78ce911da52f-container.json 749byte
    ││││││├─e84db5c6-da47-445c-812d-a8820b5162e2-result.json 3.3KB
    ││││││├─e8cfaa3a-ac99-4588-959a-30d706c97766-container.json 258byte
    ││││││├─e8d29470-ecb7-4849-82d4-8f32742865cd-container.json 258byte
    ││││││├─e98d2c73-a00e-40c4-b51c-9f2f85c14299-container.json 349byte
    ││││││├─ee0c93d5-0d07-4a3d-88ef-44aab6fe2e66-container.json 349byte
    ││││││├─ee2cdc8a-e2ac-4b80-a388-f461cef87238-container.json 349byte
    ││││││├─eea7b5d5-1e37-4d94-9b91-cd10aedcf1e2-result.json 3.3KB
    ││││││├─f370acf8-1ff6-4f37-93ee-72fad303175c-container.json 258byte
    ││││││├─f4d2bec7-d363-4f63-8eaf-fc01c8dee842-result.json 1.4KB
    ││││││├─f7c5c4a9-2413-4024-b826-864489dd8435-container.json 258byte
    ││││││├─f7cc3060-0648-4a9a-bdee-1761d26b671e-container.json 349byte
    ││││││├─f819d75b-7e98-491d-a37d-ef2cd623d91f-container.json 349byte
    ││││││├─fbe023fb-ab88-4d4a-a0f6-a3565ebc8e0f-result.json 3.3KB
    │││││Utils/
    ││││││├─Cfg.py 399byte
    ││││││├─Database.py 1.8KB
    ││││││├─GetKeywords.py 2.1KB
    ││││││├─OperationData.py 4KB
    ││││││├─SendMethod.py 1.9KB
    ││││││├─__init__.py 187byte
    ││││││├─__pycache__
    ││││││__pycache__/
    │││││││├─Cfg.cpython-37.pyc 614byte
    │││││││├─GetKeywords.cpython-37.pyc 1.8KB
    │││││││├─SendMethod.cpython-37.pyc 1.4KB
    │││││││├─__init__.cpython-37.pyc 265byte
    │││││allure-report/
    ││││││├─app.js 679.2KB
    ││││││├─data
    ││││││├─export
    ││││││├─favicon.ico
    ││││││├─history
    ││││││├─index.html 657byte
    ││││││├─plugins
    ││││││├─styles.css 1.5MB
    ││││││├─widgets
    ││││││data/
    │││││││├─attachments
    │││││││├─behaviors.csv 161byte
    │││││││├─behaviors.json 13.1KB
    │││││││├─categories.csv 131byte
    │││││││├─categories.json 6.1KB
    │││││││├─packages.json 12.4KB
    │││││││├─suites.csv 3.4KB
    │││││││├─suites.json 13.1KB
    │││││││├─test-cases
    │││││││├─timeline.json 40.4KB
    │││││││test-cases/
    ││││││││├─107144845dceabdf.json 55.6KB
    ││││││││├─145b0693f4b22f84.json 5.6KB
    ││││││││├─145c136b444b5bb.json 5.6KB
    ││││││││├─1818a83852e043a.json 4.3KB
    ││││││││├─1dfbc0e730b41075.json 5.6KB
    ││││││││├─1e9d48060a0b33d9.json 6.6KB
    ││││││││├─218ec18db3a2d9ff.json 5.6KB
    ││││││││├─254ab3aaaace6de9.json 4.3KB
    ││││││││├─29f430ade92006ec.json 7.2KB
    ││││││││├─3034f46b709bbd34.json 1.8KB
    ││││││││├─32938594149c55c5.json 5.1KB
    ││││││││├─3bfc651557df9349.json 3.4KB
    ││││││││├─3f35370239b7341a.json 5.6KB
    ││││││││├─438e0e956ae1fddc.json 3.4KB
    ││││││││├─4442d1cb52cbbe37.json 7.7KB
    ││││││││├─46a2f3a4210e1b8a.json 4.8KB
    ││││││││├─47ea272c4b9e6ca1.json 4.8KB
    ││││││││├─483e52a2472b4bdc.json 5.6KB
    ││││││││├─4b8016eb13cc3c4.json 6.7KB
    ││││││││├─4bea94ce97e0b386.json 2.8KB
    ││││││││├─4d0a36716170a7b6.json 5.1KB
    ││││││││├─5003b87ec2513d6d.json 1.8KB
    ││││││││├─508042c10f3b5e5a.json 6.6KB
    ││││││││├─56bea293eefd1bca.json 7.2KB
    ││││││││├─5afae29afafbe0e8.json 5.6KB
    ││││││││├─5ef1795510a50b5.json 7.2KB
    ││││││││├─6044ba949dfa20c3.json 5.6KB
    ││││││││├─60a10b857173c078.json 5.6KB
    ││││││││├─67509f1d2d2a8384.json 5.6KB
    ││││││││├─6c54ef2f3d2ab334.json 5.6KB
    ││││││││├─6d2dd6cb11998a28.json 5.1KB
    ││││││││├─6d98b9713e12561a.json 5.1KB
    ││││││││├─7103451249388e31.json 4.8KB
    ││││││││├─7299adea7c132b49.json 5.6KB
    ││││││││├─754ecb15a06161bf.json 5.6KB
    ││││││││├─783329c3c591f9ca.json 5.1KB
    ││││││││├─78fae65272de9f4f.json 1.8KB
    ││││││││├─79815bbe6843c240.json 7.2KB
    ││││││││├─7b5e6af41fff7d18.json 13KB
    ││││││││├─7d3335ae6372ac6d.json 5.1KB
    ││││││││├─7d90d61d6979a387.json 3.4KB
    ││││││││├─820dc5d3a5121556.json 1.8KB
    ││││││││├─834d8dedae355906.json 7.2KB
    ││││││││├─872c9eda1c93d6d3.json 5.6KB
    ││││││││├─88be76a77592c897.json 3.3KB
    ││││││││├─8aae5b70ae7ccfec.json 5.6KB
    ││││││││├─91017590bd78d97a.json 4.8KB
    ││││││││├─96e03ae2a520424b.json 5.6KB
    ││││││││├─9837cdb5338c1f3.json 4.3KB
    ││││││││├─a062fc3c7ffdfe41.json 5KB
    ││││││││├─a5bb5a2fd1c25141.json 3.4KB
    ││││││││├─a8f08f842d641f95.json 5.6KB
    ││││││││├─aa3ea594fb61da69.json 2.9KB
    ││││││││├─ac3ffb4419d5286.json 4.8KB
    ││││││││├─af8e22604167f042.json 5.6KB
    ││││││││├─b2706ef30b804f4a.json 5.6KB
    ││││││││├─b2da28b5ab4260a.json 3.4KB
    ││││││││├─b3f2670b3cab56a7.json 4.3KB
    ││││││││├─b4efe7e95d5e3060.json 5.6KB
    ││││││││├─b58072c258e2497f.json 5.1KB
    ││││││││├─c530d8c8619f4f77.json 5.6KB
    ││││││││├─c5359dd743b1fc00.json 5.1KB
    ││││││││├─c7fb1da70e850646.json 7.3KB
    ││││││││├─cb2c4041f83c99f.json 6.6KB
    ││││││││├─cb357ca46f7edb61.json 5.6KB
    ││││││││├─cd51dea3b08cab10.json 55.6KB
    ││││││││├─cf3a039f8d5b9e2f.json 5.1KB
    ││││││││├─d0bc50d5259ea6bd.json 5.6KB
    ││││││││├─d6d17c1fde4e36a3.json 5.6KB
    ││││││││├─d8980b4f7470d493.json 7.2KB
    ││││││││├─d90dc17fab15ec72.json 1.8KB
    ││││││││├─d997b4cbd82c9e67.json 5.6KB
    ││││││││├─ddbfa0bde9d5e7aa.json 5.6KB
    ││││││││├─de6a71e7a4e56ab3.json 5.6KB
    ││││││││├─e172347a8c631877.json 5.6KB
    ││││││││├─e23bcb46811e3ac8.json 1.8KB
    ││││││││├─e971b122948334c0.json 4.8KB
    ││││││││├─e9e2b7cfb3fa0b39.json 5.6KB
    ││││││││├─ea559d641fb8d07d.json 5.6KB
    ││││││││├─fa0d63d9f88a7612.json 5.1KB
    ││││││export/
    │││││││├─influxDbData.txt 606byte
    │││││││├─mail.html 148byte
    │││││││├─prometheusData.txt 346byte
    ││││││history/
    │││││││├─categories-trend.json 79byte
    │││││││├─duration-trend.json 52byte
    │││││││├─history-trend.json 143byte
    │││││││├─history.json 10.7KB
    │││││││├─retry-trend.json 62byte
    ││││││plugins/
    │││││││├─behaviors
    │││││││├─jira
    │││││││├─junit
    │││││││├─packages
    │││││││├─screen-diff
    │││││││├─trx
    │││││││├─xctest
    │││││││├─xray
    │││││││├─xunit-xml
    │││││││behaviors/
    ││││││││├─index.js 3.7KB
    │││││││packages/
    ││││││││├─index.js 1.9KB
    │││││││screen-diff/
    ││││││││├─index.js 6.9KB
    ││││││││├─styles.css 436byte
    ││││││widgets/
    │││││││├─behaviors.json 280byte
    │││││││├─categories-trend.json 79byte
    │││││││├─categories.json 521byte
    │││││││├─duration-trend.json 52byte
    │││││││├─duration.json 5.3KB
    │││││││├─environment.json 3byte
    │││││││├─executors.json 3byte
    │││││││├─history-trend.json 143byte
    │││││││├─launch.json 3byte
    │││││││├─retry-trend.json 62byte
    │││││││├─severity.json 5.3KB
    │││││││├─status-chart.json 5.3KB
    │││││││├─suites.json 271byte
    │││││││├─summary.json 382byte
    │││doc/
    ││││├─2023-6-19笔记.md 5.2KB
    ││││├─接口测试_pytest框架.docx 768KB
    ││││├─项目作业.md 332byte
    ││││├─项目信息.txt 399byte
    │││resource/
    ││││├─allure-2.13.8
    ││││├─allure-2.13.8.zip 16.4MB
    ││││allure-2.13.8/
    │││││├─allure-2.13.8
    │││││allure-2.13.8/
    ││││││├─bin
    ││││││├─config
    ││││││├─lib
    ││││││├─plugins
    ││││││bin/
    │││││││├─allure 7.3KB
    │││││││├─allure.bat 4.4KB
    ││││││config/
    │││││││├─allure-cucumber.yml
    │││││││├─allure-junit.yml 46byte
    │││││││├─allure.yml 180byte
    ││││││lib/
    │││││││├─allure-commandline-2.13.8.jar 21.1KB
    │││││││├─allure-generator-2.13.8.jar 1.1MB
    │││││││├─allure-model-2.13.0.jar 25KB
    │││││││├─allure-plugin-api-2.13.8.jar 89.8KB
    │││││││├─allure1-model-1.0.jar 35.3KB
    │││││││├─commons-beanutils-1.9.3.jar 240.4KB
    │││││││├─commons-codec-1.11.jar 327.2KB
    │││││││├─commons-collections-3.2.2.jar 574.5KB
    │││││││├─commons-collections4-4.2.jar 735.2KB
    │││││││├─commons-io-2.6.jar 209.8KB
    │││││││├─commons-lang3-3.9.jar 492.1KB
    │││││││├─commons-logging-1.2.jar 60.4KB
    │││││││├─commons-text-1.3.jar 178.7KB
    │││││││├─config
    │││││││├─flexmark-0.50.36.jar 352.4KB
    │││││││├─flexmark-util-0.50.36.jar 368.4KB
    │││││││├─freemarker-2.3.29.jar 1.5MB
    │││││││├─httpclient-4.5.9.jar 756.2KB
    │││││││├─httpcore-4.4.11.jar 319.2KB
    │││││││├─jackson-annotations-2.9.0.jar 65KB
    │││││││├─jackson-core-2.9.8.jar 318KB
    │││││││├─jackson-databind-2.9.8.jar 1.3MB
    │││││││├─jackson-dataformat-xml-2.9.8.jar 97KB
    │││││││├─jackson-dataformat-yaml-2.9.8.jar 40.4KB
    │││││││├─jackson-module-jaxb-annotations-2.9.8.jar 31.9KB
    │││││││├─javax.activation-api-1.2.0.jar 55.3KB
    │││││││├─javax.servlet-api-3.1.0.jar 93.6KB
    │││││││├─jaxb-api-2.3.1.jar 125.1KB
    │││││││├─jaxb-utils-1.0.jar 4.6KB
    │││││││├─jcommander-1.78.jar 81.8KB
    │││││││├─jetty-http-9.4.20.v20190813.jar 203KB
    │││││││├─jetty-io-9.4.20.v20190813.jar 152.5KB
    │││││││├─jetty-server-9.4.20.v20190813.jar 641.9KB
    │││││││├─jetty-util-9.4.20.v20190813.jar 526.1KB
    │││││││├─log4j-1.2.17.jar 478.4KB
    │││││││├─opencsv-4.6.jar 166.4KB
    │││││││├─properties-2.0.RC5.jar 37.3KB
    │││││││├─slf4j-api-1.7.28.jar 40.2KB
    │││││││├─slf4j-log4j12-1.7.28.jar 11.9KB
    │││││││├─snakeyaml-1.23.jar 294.2KB
    │││││││├─stax2-api-3.1.4.jar 158.1KB
    │││││││├─tika-core-1.22.jar 688KB
    │││││││├─woodstox-core-5.0.3.jar 500.7KB
    │││││││config/
    ││││││││├─jetty-logging.properties 98byte
    ││││││││├─log4j.properties 276byte
    ││││││plugins/
    │││││││├─README.txt 85byte
    │││││││├─behaviors-plugin
    │││││││├─custom-logo-plugin
    │││││││├─jira-plugin
    │││││││├─junit-xml-plugin
    │││││││├─packages-plugin
    │││││││├─screen-diff-plugin
    │││││││├─trx-plugin
    │││││││├─xctest-plugin
    │││││││├─xray-plugin
    │││││││├─xunit-xml-plugin
    │││││││behaviors-plugin/
    ││││││││├─allure-plugin.yml 182byte
    ││││││││├─behaviors-plugin-2.13.8.jar 8KB
    ││││││││├─static
    ││││││││static/
    │││││││││├─index.js 3.7KB
    │││││││custom-logo-plugin/
    ││││││││├─allure-plugin.yml 144byte
    ││││││││├─custom-logo-plugin-2.13.8.jar 312byte
    ││││││││├─static
    ││││││││static/
    │││││││││├─custom-logo.svg 4KB
    │││││││││├─styles.css 112byte
    │││││││jira-plugin/
    ││││││││├─allure-plugin.yml 146byte
    ││││││││├─jira-plugin-2.13.8.jar 8.7KB
    ││││││││├─lib
    ││││││││lib/
    │││││││││├─allure-jira-commons-2.13.8.jar 18.4KB
    │││││││││├─converter-jackson-2.6.1.jar 5.6KB
    │││││││││├─jackson-annotations-2.9.0.jar 65KB
    │││││││││├─jackson-core-2.9.8.jar 318KB
    │││││││││├─jackson-databind-2.9.8.jar 1.3MB
    │││││││││├─okhttp-3.12.0.jar 412.9KB
    │││││││││├─okio-1.15.0.jar 86.7KB
    │││││││││├─retrofit-2.6.1.jar 124.2KB
    │││││││junit-xml-plugin/
    ││││││││├─allure-plugin.yml 165byte
    ││││││││├─junit-xml-plugin-2.13.8.jar 10.5KB
    │││││││packages-plugin/
    ││││││││├─allure-plugin.yml 177byte
    ││││││││├─packages-plugin-2.13.8.jar 4.6KB
    ││││││││├─static
    ││││││││static/
    │││││││││├─index.js 1.9KB
    │││││││screen-diff-plugin/
    ││││││││├─allure-plugin.yml 135byte
    ││││││││├─screen-diff-plugin-2.13.8.jar 312byte
    ││││││││├─static
    ││││││││static/
    │││││││││├─index.js 6.9KB
    │││││││││├─styles.css 436byte
    │││││││trx-plugin/
    ││││││││├─allure-plugin.yml 148byte
    ││││││││├─trx-plugin-2.13.8.jar 9.8KB
    │││││││xctest-plugin/
    ││││││││├─allure-plugin.yml 157byte
    ││││││││├─lib
    ││││││││├─xctest-plugin-2.13.8.jar 9.3KB
    ││││││││lib/
    │││││││││├─xmlwise-1.2.11.jar 15.6KB
    │││││││xray-plugin/
    ││││││││├─allure-plugin.yml 153byte
    ││││││││├─lib
    ││││││││├─xray-plugin-2.13.8.jar 5.9KB
    ││││││││lib/
    │││││││││├─allure-jira-commons-2.13.8.jar 18.4KB
    │││││││││├─converter-jackson-2.6.1.jar 5.6KB
    │││││││││├─jackson-annotations-2.9.0.jar 65KB
    │││││││││├─jackson-core-2.9.8.jar 318KB
    │││││││││├─jackson-databind-2.9.8.jar 1.3MB
    │││││││││├─okhttp-3.12.0.jar 412.9KB
    │││││││││├─okio-1.15.0.jar 86.7KB
    │││││││││├─retrofit-2.6.1.jar 124.2KB
    │││││││xunit-xml-plugin/
    ││││││││├─allure-plugin.yml 180byte
    ││││││││├─xunit-xml-plugin-2.13.8.jar 6.7KB
    │││video/
    ││││├─01allure生成测试报告.mp4 54.4MB
    ││││├─02allure结合pytest使用.mp4 47.9MB
    ││││├─03获取验证码.mp4 46.4MB
    ││││├─04封装jsonpath获取验证码.mp4 38.2MB
    ││││├─05注册会员封装.mp4 11.9MB
    ││││├─06获取headers.mp4 19MB
    ││││├─07添加购物车.mp4 142.2MB
    ││││├─08项目流程.mp4 105.2MB
    ││2023-06-20接口自动化项目day04/
    │││├─code
    │││├─doc
    │││├─img
    │││├─resource
    │││├─video
    │││code/
    ││││├─InterfaceTest
    ││││InterfaceTest/
    │││││├─.idea
    │││││├─.pytest_cache
    │││││├─Case
    │││││├─Config
    │││││├─Data
    │││││├─Interface
    │││││├─Report
    │││││├─Utils
    │││││├─allure-report
    │││││├─pytest.ini 135byte
    │││││.idea/
    ││││││├─InterfaceTest.iml 405byte
    ││││││├─inspectionProfiles
    ││││││├─misc.xml 192byte
    ││││││├─modules.xml 285byte
    ││││││├─workspace.xml 15KB
    ││││││inspectionProfiles/
    │││││││├─Project_Default.xml 404byte
    │││││││├─profiles_settings.xml 174byte
    │││││.pytest_cache/
    ││││││├─.gitignore 39byte
    ││││││├─CACHEDIR.TAG 191byte
    ││││││├─README.md 310byte
    ││││││├─v
    ││││││v/
    │││││││├─cache
    │││││││cache/
    ││││││││├─nodeids 61byte
    ││││││││├─stepwise 2byte
    │││││Case/
    ││││││├─__pycache__
    ││││││├─conftest.py 2.6KB
    ││││││├─test_01_generate_order.py 3.1KB
    ││││││__pycache__/
    │││││││├─conftest.cpython-37-pytest-7.3.2.pyc 3KB
    │││││││├─test_01_generate_order.cpython-37-pytest-7.3.2.pyc 1.9KB
    │││││Config/
    ││││││├─TestUrl.py 207byte
    ││││││├─__init__.py 187byte
    ││││││├─__pycache__
    ││││││├─db.ini 115byte
    ││││││__pycache__/
    │││││││├─TestUrl.cpython-37.pyc 343byte
    │││││││├─__init__.cpython-37.pyc 266byte
    │││││Interface/
    ││││││├─.idea
    ││││││├─AddressInterface.py 1.1KB
    ││││││├─CartInterface.py 3.1KB
    ││││││├─CouponInterface.py 771byte
    ││││││├─MemberInterface.py 2.6KB
    ││││││├─OrderInterface.py 1.2KB
    ││││││├─__init__.py 187byte
    ││││││├─__pycache__
    ││││││.idea/
    │││││││├─.gitignore 325byte
    │││││││├─Interface.iml 405byte
    │││││││├─inspectionProfiles
    │││││││├─misc.xml 192byte
    │││││││├─modules.xml 277byte
    │││││││├─workspace.xml 1.8KB
    │││││││inspectionProfiles/
    ││││││││├─Project_Default.xml 404byte
    ││││││││├─profiles_settings.xml 174byte
    ││││││__pycache__/
    │││││││├─CartInterface.cpython-37.pyc 1.8KB
    │││││││├─MemberInterface.cpython-37.pyc 2.5KB
    │││││││├─OrderInterface.cpython-37.pyc 1.4KB
    │││││││├─__init__.cpython-37.pyc 269byte
    │││││Report/
    ││││││├─0c669523-de60-4d95-8ae6-d95f469cfd1c-result.json 657byte
    ││││││├─0c97866a-4527-4f0a-97d4-a9f7bac49f7c-container.json 247byte
    ││││││├─18ee7305-925c-4c8d-8751-d849b473fc0e-container.json 250byte
    ││││││├─2dabdb49-90dc-46e6-a6a7-8fddb68a6d23-container.json 248byte
    ││││││├─3b99a588-a03f-4fd6-b5d2-de7ac5ec11d8-container.json 254byte
    ││││││├─408a768e-b055-4ea7-8567-b2f769cf9832-container.json 247byte
    ││││││├─62a5d5ee-83ae-4fe6-b95b-be1b0561dd30-container.json 248byte
    ││││││├─66eb7a11-2ab7-4fcb-8e63-48598b332cb8-container.json 250byte
    ││││││├─6905cbcc-42df-41f0-ba2f-2ff307b7fed4-container.json 254byte
    ││││││├─6964a942-a082-48c2-a6b1-c94b889f729f-container.json 248byte
    ││││││├─6d0c63e9-3512-49ca-8097-c3d3db636876-container.json 245byte
    ││││││├─6d44d161-87c7-417b-8c93-fdd29d459b6a-container.json 245byte
    ││││││├─72319745-ded5-44cf-81a1-9e8fdc30b2e9-container.json 248byte
    ││││││├─76dcb2fb-579b-4487-acbf-aa318c0ac80a-container.json 254byte
    ││││││├─7b258b41-f245-455b-b285-6a041bc90263-container.json 247byte
    ││││││├─846a4439-65cf-471e-8195-d2a2bd93b103-container.json 247byte
    ││││││├─846b52fd-1dd0-40d6-9421-ab871a699f25-container.json 250byte
    ││││││├─8b7f7a10-6975-4881-8233-1642f78bdca5-result.json 656byte
    ││││││├─90f0e659-fe07-4e1c-abbe-509840ffda46-container.json 247byte
    ││││││├─9a792a8b-eb40-46b5-a88c-9d05eef76936-container.json 245byte
    ││││││├─a26a7e2d-6020-4703-8074-bb8f0a0ee041-result.json 656byte
    ││││││├─a68fbb41-9477-42ee-9ecd-9fdd10a5f924-container.json 250byte
    ││││││├─a6c3056e-91ce-4a1e-b4f0-7483604bcc6a-container.json 254byte
    ││││││├─b3a92ea6-020e-4e47-bfac-bc1c0de69108-result.json 657byte
    ││││││├─c144e86c-13b2-44c0-9a6e-e23a3a88243c-container.json 250byte
    ││││││├─c75cdc98-c782-41de-9384-f05bb917d0cc-result.json 656byte
    ││││││├─cb60e67c-afb4-4dbd-ac85-2ea50e33db40-container.json 254byte
    ││││││├─d0659b90-c085-4a1c-97be-4ed3b9e5aa4e-container.json 245byte
    ││││││├─dbcf54d3-dfe0-441b-a188-b45c6b45689a-container.json 248byte
    ││││││├─e5ff36f4-a603-4997-af4e-dba8cc415d82-container.json 245byte
    │││││Utils/
    ││││││├─Cfg.py 399byte
    ││││││├─Database.py 1.8KB
    ││││││├─GetKeywords.py 2.1KB
    ││││││├─OperationData.py 4KB
    ││││││├─SendDingTalk.py 783byte
    ││││││├─SendMail.py 1.2KB
    ││││││├─SendMethod.py 1.9KB
    ││││││├─__init__.py 187byte
    ││││││├─__pycache__
    ││││││__pycache__/
    │││││││├─Cfg.cpython-37.pyc 614byte
    │││││││├─Database.cpython-37.pyc 2.1KB
    │││││││├─GetKeywords.cpython-37.pyc 1.8KB
    │││││││├─SendMethod.cpython-37.pyc 1.4KB
    │││││││├─__init__.cpython-37.pyc 265byte
    │││││allure-report/
    ││││││├─app.js 679.2KB
    ││││││├─data
    ││││││├─export
    ││││││├─favicon.ico 57byte
    ││││││├─history
    ││││││├─index.html 657byte
    ││││││├─plugins
    ││││││├─styles.css 1.5MB
    ││││││├─widgets
    ││││││data/
    │││││││├─attachments
    │││││││├─behaviors.csv 101byte
    │││││││├─behaviors.json 437byte
    │││││││├─categories.csv
    │││││││├─categories.json 97byte
    │││││││├─packages.json 580byte
    │││││││├─suites.csv 277byte
    │││││││├─suites.json 712byte
    │││││││├─test-cases
    │││││││├─timeline.json 2.7KB
    │││││││test-cases/
    ││││││││├─478fe2639059a30.json 2.8KB
    ││││││││├─7761b516bbc8e6f7.json 3.7KB
    ││││││││├─a40bea7e8cac7285.json 2.9KB
    ││││││││├─b3afd0419a80c2a2.json 2.9KB
    ││││││││├─e8e0a39ca9e57109.json 2.9KB
    ││││││export/
    │││││││├─influxDbData.txt 495byte
    │││││││├─mail.html 148byte
    │││││││├─prometheusData.txt 275byte
    ││││││history/
    │││││││├─categories-trend.json 24byte
    │││││││├─duration-trend.json 49byte
    │││││││├─history-trend.json 141byte
    │││││││├─history.json 417byte
    │││││││├─retry-trend.json 60byte
    ││││││plugins/
    │││││││├─behaviors
    │││││││├─jira
    │││││││├─junit
    │││││││├─packages
    │││││││├─screen-diff
    │││││││├─trx
    │││││││├─xctest
    │││││││├─xray
    │││││││├─xunit-xml
    │││││││behaviors/
    ││││││││├─index.js 3.7KB
    │││││││packages/
    ││││││││├─index.js 1.9KB
    │││││││screen-diff/
    ││││││││├─index.js 6.9KB
    ││││││││├─styles.css 436byte
    ││││││widgets/
    │││││││├─behaviors.json 37byte
    │││││││├─categories-trend.json 24byte
    │││││││├─categories.json 37byte
    │││││││├─duration-trend.json 49byte
    │││││││├─duration.json 224byte
    │││││││├─environment.json 3byte
    │││││││├─executors.json 3byte
    │││││││├─history-trend.json 141byte
    │││││││├─launch.json 3byte
    │││││││├─retry-trend.json 60byte
    │││││││├─severity.json 224byte
    │││││││├─status-chart.json 224byte
    │││││││├─suites.json 269byte
    │││││││├─summary.json 377byte
    │││doc/
    ││││├─接口测试_pytest框架.docx 768KB
    ││││├─项目.md 743byte
    ││││├─项目信息.txt 399byte
    │││img/
    ││││├─F12复制curl.png 44.2KB
    ││││├─F12清缓存.png 76.8KB
    ││││├─优惠券.png 36.9KB
    ││││├─订单.png 62.6KB
    ││││├─购物车.png 51.8KB
    │││resource/
    ││││├─allure-2.13.8
    ││││├─allure-2.13.8.zip 16.4MB
    ││││allure-2.13.8/
    │││││├─allure-2.13.8
    │││││allure-2.13.8/
    ││││││├─bin
    ││││││├─config
    ││││││├─lib
    ││││││├─plugins
    ││││││bin/
    │││││││├─allure 7.3KB
    │││││││├─allure.bat 4.4KB
    ││││││config/
    │││││││├─allure-cucumber.yml
    │││││││├─allure-junit.yml 46byte
    │││││││├─allure.yml 180byte
    ││││││lib/
    │││││││├─allure-commandline-2.13.8.jar 21.1KB
    │││││││├─allure-generator-2.13.8.jar 1.1MB
    │││││││├─allure-model-2.13.0.jar 25KB
    │││││││├─allure-plugin-api-2.13.8.jar 89.8KB
    │││││││├─allure1-model-1.0.jar 35.3KB
    │││││││├─commons-beanutils-1.9.3.jar 240.4KB
    │││││││├─commons-codec-1.11.jar 327.2KB
    │││││││├─commons-collections-3.2.2.jar 574.5KB
    │││││││├─commons-collections4-4.2.jar 735.2KB
    │││││││├─commons-io-2.6.jar 209.8KB
    │││││││├─commons-lang3-3.9.jar 492.1KB
    │││││││├─commons-logging-1.2.jar 60.4KB
    │││││││├─commons-text-1.3.jar 178.7KB
    │││││││├─config
    │││││││├─flexmark-0.50.36.jar 352.4KB
    │││││││├─flexmark-util-0.50.36.jar 368.4KB
    │││││││├─freemarker-2.3.29.jar 1.5MB
    │││││││├─httpclient-4.5.9.jar 756.2KB
    │││││││├─httpcore-4.4.11.jar 319.2KB
    │││││││├─jackson-annotations-2.9.0.jar 65KB
    │││││││├─jackson-core-2.9.8.jar 318KB
    │││││││├─jackson-databind-2.9.8.jar 1.3MB
    │││││││├─jackson-dataformat-xml-2.9.8.jar 97KB
    │││││││├─jackson-dataformat-yaml-2.9.8.jar 40.4KB
    │││││││├─jackson-module-jaxb-annotations-2.9.8.jar 31.9KB
    │││││││├─javax.activation-api-1.2.0.jar 55.3KB
    │││││││├─javax.servlet-api-3.1.0.jar 93.6KB
    │││││││├─jaxb-api-2.3.1.jar 125.1KB
    │││││││├─jaxb-utils-1.0.jar 4.6KB
    │││││││├─jcommander-1.78.jar 81.8KB
    │││││││├─jetty-http-9.4.20.v20190813.jar 203KB
    │││││││├─jetty-io-9.4.20.v20190813.jar 152.5KB
    │││││││├─jetty-server-9.4.20.v20190813.jar 641.9KB
    │││││││├─jetty-util-9.4.20.v20190813.jar 526.1KB
    │││││││├─log4j-1.2.17.jar 478.4KB
    │││││││├─opencsv-4.6.jar 166.4KB
    │││││││├─properties-2.0.RC5.jar 37.3KB
    │││││││├─slf4j-api-1.7.28.jar 40.2KB
    │││││││├─slf4j-log4j12-1.7.28.jar 11.9KB
    │││││││├─snakeyaml-1.23.jar 294.2KB
    │││││││├─stax2-api-3.1.4.jar 158.1KB
    │││││││├─tika-core-1.22.jar 688KB
    │││││││├─woodstox-core-5.0.3.jar 500.7KB
    │││││││config/
    ││││││││├─jetty-logging.properties 98byte
    ││││││││├─log4j.properties 276byte
    ││││││plugins/
    │││││││├─README.txt 85byte
    │││││││├─behaviors-plugin
    │││││││├─custom-logo-plugin
    │││││││├─jira-plugin
    │││││││├─junit-xml-plugin
    │││││││├─packages-plugin
    │││││││├─screen-diff-plugin
    │││││││├─trx-plugin
    │││││││├─xctest-plugin
    │││││││├─xray-plugin
    │││││││├─xunit-xml-plugin
    │││││││behaviors-plugin/
    ││││││││├─allure-plugin.yml 182byte
    ││││││││├─behaviors-plugin-2.13.8.jar 8KB
    ││││││││├─static
    ││││││││static/
    │││││││││├─index.js 3.7KB
    │││││││custom-logo-plugin/
    ││││││││├─allure-plugin.yml 144byte
    ││││││││├─custom-logo-plugin-2.13.8.jar 312byte
    ││││││││├─static
    ││││││││static/
    │││││││││├─custom-logo.svg 4KB
    │││││││││├─styles.css 112byte
    │││││││jira-plugin/
    ││││││││├─allure-plugin.yml 146byte
    ││││││││├─jira-plugin-2.13.8.jar 8.7KB
    ││││││││├─lib
    ││││││││lib/
    │││││││││├─allure-jira-commons-2.13.8.jar 18.4KB
    │││││││││├─converter-jackson-2.6.1.jar 5.6KB
    │││││││││├─jackson-annotations-2.9.0.jar 65KB
    │││││││││├─jackson-core-2.9.8.jar 318KB
    │││││││││├─jackson-databind-2.9.8.jar 1.3MB
    │││││││││├─okhttp-3.12.0.jar 412.9KB
    │││││││││├─okio-1.15.0.jar 86.7KB
    │││││││││├─retrofit-2.6.1.jar 124.2KB
    │││││││junit-xml-plugin/
    ││││││││├─allure-plugin.yml 165byte
    ││││││││├─junit-xml-plugin-2.13.8.jar 10.5KB
    │││││││packages-plugin/
    ││││││││├─allure-plugin.yml 177byte
    ││││││││├─packages-plugin-2.13.8.jar 4.6KB
    ││││││││├─static
    ││││││││static/
    │││││││││├─index.js 1.9KB
    │││││││screen-diff-plugin/
    ││││││││├─allure-plugin.yml 135byte
    ││││││││├─screen-diff-plugin-2.13.8.jar 312byte
    ││││││││├─static
    ││││││││static/
    │││││││││├─index.js 6.9KB
    │││││││││├─styles.css 436byte
    │││││││trx-plugin/
    ││││││││├─allure-plugin.yml 148byte
    ││││││││├─trx-plugin-2.13.8.jar 9.8KB
    │││││││xctest-plugin/
    ││││││││├─allure-plugin.yml 157byte
    ││││││││├─lib
    ││││││││├─xctest-plugin-2.13.8.jar 9.3KB
    ││││││││lib/
    │││││││││├─xmlwise-1.2.11.jar 15.6KB
    │││││││xray-plugin/
    ││││││││├─allure-plugin.yml 153byte
    ││││││││├─lib
    ││││││││├─xray-plugin-2.13.8.jar 5.9KB
    ││││││││lib/
    │││││││││├─allure-jira-commons-2.13.8.jar 18.4KB
    │││││││││├─converter-jackson-2.6.1.jar 5.6KB
    │││││││││├─jackson-annotations-2.9.0.jar 65KB
    │││││││││├─jackson-core-2.9.8.jar 318KB
    │││││││││├─jackson-databind-2.9.8.jar 1.3MB
    │││││││││├─okhttp-3.12.0.jar 412.9KB
    │││││││││├─okio-1.15.0.jar 86.7KB
    │││││││││├─retrofit-2.6.1.jar 124.2KB
    │││││││xunit-xml-plugin/
    ││││││││├─allure-plugin.yml 180byte
    ││││││││├─xunit-xml-plugin-2.13.8.jar 6.7KB
    │││video/
    ││││├─01完整流程.mp4 156.8MB
    ││││├─02解决幻读.mp4 29MB
    ││││├─03项目安排.mp4 18.2MB
    ││││├─04F12使用.mp4 60.2MB
    ││││├─05F12的其他功能.mp4 15.2MB
    ││2023-06-21接口自动化项目day05/
    │││├─code
    │││├─doc
    │││├─img
    │││├─resource
    │││├─video
    │││code/
    ││││├─InterfaceTest
    ││││InterfaceTest/
    │││││├─.idea
    │││││├─.pytest_cache
    │││││├─Case
    │││││├─Config
    │││││├─Data
    │││││├─Interface
    │││││├─Report
    │││││├─Utils
    │││││├─allure-report
    │││││├─pytest.ini 116byte
    │││││.idea/
    ││││││├─InterfaceTest.iml 405byte
    ││││││├─inspectionProfiles
    ││││││├─misc.xml 192byte
    ││││││├─modules.xml 285byte
    ││││││├─workspace.xml 14KB
    ││││││inspectionProfiles/
    │││││││├─Project_Default.xml 404byte
    │││││││├─profiles_settings.xml 174byte
    │││││.pytest_cache/
    ││││││├─.gitignore 39byte
    ││││││├─CACHEDIR.TAG 191byte
    ││││││├─README.md 310byte
    ││││││├─v
    ││││││v/
    │││││││├─cache
    │││││││cache/
    ││││││││├─lastfailed 414byte
    ││││││││├─nodeids 3.4KB
    ││││││││├─stepwise 2byte
    │││││Case/
    ││││││├─conftest.py 2.6KB
    ││││││├─test_01_generate_order.py 3.1KB
    │││││Config/
    ││││││├─TestUrl.py 207byte
    ││││││├─__init__.py 187byte
    ││││││├─__pycache__
    ││││││├─db.ini 115byte
    ││││││__pycache__/
    │││││││├─TestUrl.cpython-37.pyc 343byte
    │││││││├─__init__.cpython-37.pyc 266byte
    │││││Interface/
    ││││││├─AddressInterface.py 1.1KB
    ││││││├─CartInterface.py 3.1KB
    ││││││├─CouponInterface.py 771byte
    ││││││├─MemberInterface.py 2.6KB
    ││││││├─OrderInterface.py 1.2KB
    ││││││├─__pycache__
    ││││││__pycache__/
    │││││││├─MemberInterface.cpython-37.pyc 2.5KB
    │││││Report/
    ││││││├─01b4aa11-b516-42bf-9d34-c1c2b5ee3710-container.json 349byte
    ││││││├─024e31fd-88b1-4501-b866-bdf403889659-result.json 1.8KB
    ││││││├─0335944c-813c-4f0e-aa13-3bfb550a6448-container.json 349byte
    ││││││├─045f5dbb-d43e-435c-8ebd-08f9da77783a-container.json 258byte
    ││││││├─0563f446-7c33-49ce-ad54-241235118b33-container.json 349byte
    ││││││├─057bb20c-3594-486a-9358-00a01fa16a42-result.json 1.3KB
    ││││││├─09465019-3e27-480e-a300-4a3f2b5692dc-container.json 258byte
    ││││││├─0979655c-2647-4094-91eb-432767aee480-container.json 258byte
    ││││││├─09bae212-b41b-4b2d-8f59-f29d6d458e1c-result.json 2.2KB
    ││││││├─0a17ab2e-a384-48db-91b3-c731953f6b94-result.json 1.4KB
    ││││││├─0bce409d-3333-4bd3-b569-a157419ac1fc-container.json 258byte
    ││││││├─0befcbeb-b022-452a-9d67-f3a1c3129d3e-container.json 258byte
    ││││││├─11aca095-06d2-4739-8812-6349910484a5-container.json 349byte
    ││││││├─12cb0415-e302-4cf9-923d-b41d59a16e4b-result.json 3.3KB
    ││││││├─12e25a06-522b-4833-9898-c02d4d087a46-container.json 349byte
    ││││││├─132e0666-9209-40a7-a5c8-c1bcfc3f3183-container.json 258byte
    ││││││├─1441d2f4-3906-4bbf-9ad3-b0a45cab3738-result.json 3.3KB
    ││││││├─19d0e039-4e4b-48ab-b7cd-23c5ae8fe406-result.json 3.3KB
    ││││││├─19df04f8-0134-44bc-b631-df24bf44a419-result.json 970byte
    ││││││├─1a444302-8b78-4323-b253-b40b2b6b3f23-result.json 1.3KB
    ││││││├─1adf8163-5fed-4eae-a22b-af6ddd1064d7-result.json 3.3KB
    ││││││├─1cad5d64-caf5-4e38-aaba-b7473c02125f-result.json 3.3KB
    ││││││├─1e78806f-e0a4-4f63-8c57-5535e539b9e5-result.json 1.8KB
    ││││││├─1e8c8aee-be48-44d8-89b4-cee775016736-container.json 349byte
    ││││││├─20e6e05e-78b5-43af-ac56-638d5384260d-result.json 2.3KB
    ││││││├─2244aa2b-ecf7-4dd9-b55a-220cdd30b863-container.json 349byte
    ││││││├─23ab251f-29bb-4bc3-a51e-044690d0d75b-result.json 617byte
    ││││││├─2618f0d7-a4a8-4c52-a056-6fa1556debfe-result.json 1.3KB
    ││││││├─262de86c-550f-4d7d-bb12-3a50314a3190-container.json 258byte
    ││││││├─26c637da-4598-4877-8082-5fa73b71c67e-container.json 349byte
    ││││││├─26c64934-0635-48b4-b23e-952746b74c03-container.json 349byte
    ││││││├─28183428-9a3c-4eba-9d4d-66ec1db493e1-result.json 3.3KB
    ││││││├─28c4b4c4-69f9-409b-9e23-7ba9b506b4c3-result.json 2.3KB
    ││││││├─28edf759-641a-425d-a083-c44ee90cc711-container.json 349byte
    ││││││├─29642acc-df98-44eb-80c3-6eabd685c709-container.json 258byte
    ││││││├─2b7155cc-0e45-43c0-815a-9923b15d3c30-container.json 349byte
    ││││││├─2be5931b-1387-46b5-9984-9b4929caad09-container.json 349byte
    ││││││├─2c145333-fc11-44b3-9036-79478161ac97-result.json 1.4KB
    ││││││├─2c7edd03-beda-4566-babd-7a2b311869fd-container.json 349byte
    ││││││├─2d2c1341-353a-4c8d-a2ad-3a0151ca8852-container.json 349byte
    ││││││├─2e4a3465-5e6f-42b5-8fbb-f2b9b0fd8b91-result.json 3.3KB
    ││││││├─2f82d2e8-2603-4102-9c6b-3b66e133c3eb-container.json 349byte
    ││││││├─30b4b7fb-1eff-4ea4-9f26-c8b9b1de1fcc-container.json 258byte
    ││││││├─32819f4c-80fa-4be0-b780-6c76917dc73e-result.json 3.3KB
    ││││││├─378b9dbd-f0f7-4239-9494-bd3813b14225-result.json 948byte
    ││││││├─37b8efb0-b00f-4346-b4ce-c7cb3cbd6591-container.json 349byte
    ││││││├─37dab30b-9416-46c7-b380-2ef393749f51-container.json 749byte
    ││││││├─38d6bcc4-2b84-4284-9433-700f8ddb9968-result.json 3.3KB
    ││││││├─39076058-a2fc-4752-97a8-6bfe3437181a-container.json 258byte
    ││││││├─397e94a1-69b3-4a35-9f7b-0ffbc915cb96-container.json 749byte
    ││││││├─3a170531-8deb-449d-b102-d3b9957ea169-container.json 258byte
    ││││││├─3acc1ed8-e188-4d4c-a529-0ebdf719c813-container.json 349byte
    ││││││├─3b003235-3069-4d56-870e-5b3485fdf69a-container.json 258byte
    ││││││├─3cf51e7d-ed76-4dff-9b41-84632677038e-result.json 1.4KB
    ││││││├─3e856447-8c33-41e2-83ef-60de2dd33f4a-container.json 349byte
    ││││││├─3f137732-24de-49aa-9233-420db79f6ade-container.json 258byte
    ││││││├─412f8bc9-de1e-44e4-8b84-d16b441c04f7-container.json 349byte
    ││││││├─41d63df8-fb7e-4fde-bdbe-bcc2355d488c-container.json 349byte
    ││││││├─439b7392-662c-4517-adc8-4e185a906b06-result.json 1.8KB
    ││││││├─4600e7a4-d56c-436f-8662-de9826c12f63-result.json 1.3KB
    ││││││├─468266a4-e68b-45bb-a86e-3e5160cd52d0-container.json 258byte
    ││││││├─477dc6d7-cf9a-4f16-9841-2bbf6866a2e4-container.json 258byte
    ││││││├─490e5d31-2b8a-45e5-b364-149cd11b1454-container.json 258byte
    ││││││├─4a7b4bd2-354a-4ba2-ae9a-92fd50f59e81-result.json 3.3KB
    ││││││├─4b643c61-fcd2-4ccd-8705-3849669dfe3f-result.json 1.3KB
    ││││││├─4c089aa8-4458-49ec-b063-37f41f2d8351-container.json 258byte
    ││││││├─4dc53863-db0f-459c-80a3-289142cb7d61-result.json 1.3KB
    ││││││├─50049f1e-7120-44f1-b053-bd35704dae1d-container.json 349byte
    ││││││├─500aa24c-e897-4ac9-ae10-28beb1ad2fa6-container.json 349byte
    ││││││├─507cb444-6166-44a0-a474-e6ca127fc51e-container.json 349byte
    ││││││├─5135efa3-7341-4b2a-9912-f109b33cecbb-container.json 349byte
    ││││││├─527ebe4b-2d46-41a2-a01d-a67752e8a025-container.json 349byte
    ││││││├─52eaa394-8ea9-4c0f-8d9f-92a22d340649-container.json 258byte
    ││││││├─530b8ce0-eab2-441e-bc4b-d5a7368619f1-container.json 258byte
    ││││││├─53a71869-353a-4e23-b7bc-9d3927376589-container.json 258byte
    ││││││├─53d5fca2-51ed-43cb-bd70-c4ea6a9f4fc4-container.json 258byte
    ││││││├─5522d6b3-1b60-4330-a6fe-07308ffce1c9-container.json 258byte
    ││││││├─565469be-526e-44b0-8fa7-7461235466a4-container.json 349byte
    ││││││├─56b97d21-ef98-4334-9bf0-500fa2941c79-result.json 2.3KB
    ││││││├─58c41c63-f229-4e9b-9571-9e3debbabda7-container.json 258byte
    ││││││├─593c4332-493e-4dde-a45d-d2e0a9477934-container.json 258byte
    ││││││├─5963330a-60a7-4bcc-a438-7e4b1133318c-result.json 3.3KB
    ││││││├─5c859289-6634-447a-a802-1d1add61e8c4-result.json 616byte
    ││││││├─5d204634-68b9-4d95-a1d8-5faf59e4b2aa-container.json 258byte
    ││││││├─5e7e302d-b26f-4964-8b65-9046dbb751eb-container.json 349byte
    ││││││├─5e81e966-3ec2-470c-a0c2-f8e6028785f7-container.json 349byte
    ││││││├─5ebca28b-9473-4c3e-9680-2e6bcda1ce93-container.json 258byte
    ││││││├─605faf30-69f0-4a08-a17a-0ee174ad4a65-container.json 258byte
    ││││││├─60da2a1d-c904-40cf-b7a9-dc6284a3734a-result.json 3.3KB
    ││││││├─613a1903-4455-4034-989d-84c31872aa5a-container.json 258byte
    ││││││├─62abae20-307f-4b3d-948a-dd28e9284b6b-container.json 349byte
    ││││││├─63059b32-f6f9-4287-beea-382ece60dec0-container.json 349byte
    ││││││├─64834b40-a892-4713-9865-f5aeadeb077f-container.json 258byte
    ││││││├─651c1083-96f6-41cc-b16b-79449064c895-container.json 349byte
    ││││││├─65382904-9602-492f-b5f9-1e9356feb4b4-container.json 349byte
    ││││││├─699c61d0-3bb2-4df3-a872-85ab70c945a6-container.json 349byte
    ││││││├─6b3f9382-c128-497c-8f92-88ad62cb76d1-container.json 258byte
    ││││││├─6bbc43a8-d68b-403b-adb3-61897efd1ce3-result.json 2.2KB
    ││││││├─6ccd727c-2349-4b98-96e3-30cd119e2989-container.json 349byte
    ││││││├─6d1d4b6e-621a-4b84-846e-367907c6b5f9-container.json 258byte
    ││││││├─6ef665de-293d-4d3d-99e6-a69667dd07b9-container.json 258byte
    ││││││├─6f195cd3-1838-4609-ac2c-06480a847a6d-container.json 258byte
    ││││││├─6f420cf5-066e-483c-86ee-01fb723c8da9-container.json 258byte
    ││││││├─70c719e5-76b0-4acc-88d3-61dbda483ee8-container.json 258byte
    ││││││├─71a2427c-7502-43f8-a840-ad29aefefcd2-container.json 258byte
    ││││││├─73d68945-d4a1-4f58-8ffa-4f5e2527382f-result.json 1.3KB
    ││││││├─75342142-667b-4a64-9d3e-79b438714f5b-container.json 349byte
    ││││││├─7539edb1-3707-461b-81b6-0649ede15f8c-container.json 349byte
    ││││││├─7764a1fc-1594-4c0f-9590-cb1a1cfb09a6-result.json 2.2KB
    ││││││├─7a26cfa2-8942-4722-9bb8-83a6c75b9aea-result.json 3.3KB
    ││││││├─7a72516c-9204-4beb-a3c3-5401023141fb-container.json 749byte
    ││││││├─7b608823-04f6-430c-83d6-174675235be9-container.json 258byte
    ││││││├─7c67b6e3-330b-4498-803e-4f9093db8fce-result.json 3.3KB
    ││││││├─7c9a30e3-7064-4a3b-bcb0-4ab096ff5ffa-result.json 3.3KB
    ││││││├─7ce83326-e396-445f-a510-00bd2fc8c5b0-container.json 349byte
    ││││││├─7d09adda-88f4-464a-b78d-c2add1fdc20a-container.json 349byte
    ││││││├─7d1c7203-eaf0-4778-9de3-cd1266b8ca10-container.json 349byte
    ││││││├─7d8a37e2-6a01-4a85-bff0-6a6c1138554e-result.json 2.2KB
    ││││││├─7f723450-3d96-46cf-a33a-667460014350-container.json 258byte
    ││││││├─7f909160-a833-439c-9a5c-6a3968361aae-result.json 1.3KB
    ││││││├─82a3cc9f-ce7a-44e3-b80d-b8a50f3daf19-result.json 3.3KB
    ││││││├─82d819e0-0bd1-401d-ac0e-99fbcd09bb8e-result.json 2.3KB
    ││││││├─831ef2ec-6130-400b-90d2-6411e3969a32-container.json 258byte
    ││││││├─84937684-db57-4348-a4c6-a277592acfb1-result.json 957byte
    ││││││├─86c38853-d101-4947-b13f-2d62bbdc58b7-container.json 258byte
    ││││││├─86f6811c-e361-4a88-aa04-7f82787f5775-container.json 349byte
    ││││││├─87a43843-8aa1-4452-8802-eaa428234834-result.json 1.3KB
    ││││││├─882ee990-4781-4864-b6e2-aed9153ec653-result.json 1.3KB
    ││││││├─8a204ba4-5a87-40bd-bc7b-3ad306546a95-result.json 499byte
    ││││││├─8b3fbd99-07ac-4342-a246-16aad4253715-result.json 958byte
    ││││││├─8b7013a4-b685-4579-ac7a-a3e189cff592-result.json 3.3KB
    ││││││├─8bc900cc-cf22-4d60-8373-9c96516b9695-container.json 258byte
    ││││││├─8bf3b92e-e7bd-4d55-ae62-212113d915fe-container.json 349byte
    ││││││├─8dd355ec-1104-458d-889e-cd5a76e2116d-result.json 3.3KB
    ││││││├─8e26187e-ce22-4aa4-8ee2-8763ab1a9d04-container.json 349byte
    ││││││├─8ef25842-1666-4f8a-a58b-d893f26b439a-container.json 349byte
    ││││││├─8fd17012-6c03-42a7-a795-26b74f12331f-result.json 3.3KB
    ││││││├─90541948-d978-406c-808b-4747e7a69eb2-container.json 349byte
    ││││││├─909e848c-b788-4861-b5b3-3580d980f391-container.json 258byte
    ││││││├─912ebec7-f183-4b93-af58-e89df15e2d6e-container.json 258byte
    ││││││├─91a41562-6d37-4b14-9298-4e0c14c445dd-container.json 258byte
    ││││││├─930c607f-0a88-4b43-8333-2f28c2787eeb-container.json 349byte
    ││││││├─93709b0c-a010-4e29-8589-49f459b6c625-container.json 258byte
    ││││││├─948e2334-4644-406f-8cbc-e4968c0106ce-result.json 616byte
    ││││││├─98b2f2af-1649-4577-b613-174f2c4974e8-result.json 1.9KB
    ││││││├─98b5777e-896c-4e5c-ab70-2cb3da249b85-result.json 2.2KB
    ││││││├─98c51097-edba-49bd-9ef7-829492272581-result.json 3.3KB
    ││││││├─9914f8b4-624c-462f-92b4-865b8724514c-result.json 616byte
    ││││││├─9a8ace31-c929-44ab-a848-bd05a5a8743c-container.json 349byte
    ││││││├─9b3ad1fb-3129-4896-b94f-6baa8ce8acc4-container.json 258byte
    ││││││├─9b6a155c-34dd-4522-9046-cbf2d5fd12b9-container.json 349byte
    ││││││├─9c794b15-e12d-42e0-9144-a39ab50a20a8-result.json 2.2KB
    ││││││├─9c7fe5f1-04b1-4bc5-8ef9-dda71c2fa46f-container.json 258byte
    ││││││├─9cfb751d-3c06-48a2-86fa-d72dc69c3884-container.json 258byte
    ││││││├─9d17621c-9c0e-410b-a894-259b93a49dbc-container.json 349byte
    ││││││├─9fa0e0bd-d502-44f5-9f95-a1a653805a1c-container.json 258byte
    ││││││├─a0f0b44f-f4e4-4fee-a7d8-d0ab46517746-container.json 258byte
    ││││││├─a643af71-b85f-4e5f-bfc1-bb0d6e424105-container.json 749byte
    ││││││├─a8912469-15e7-4f14-b034-4a55d08325a0-container.json 349byte
    ││││││├─a9e11194-cb28-49de-ad31-632a8c0b1dde-container.json 349byte
    ││││││├─ab31bb2c-94fb-4597-900d-c9f78aabed7f-container.json 258byte
    ││││││├─ad298f06-a134-4097-bb9d-25743067df89-container.json 749byte
    ││││││├─ade51f8e-3007-470d-9e92-0d111351d155-container.json 258byte
    ││││││├─b24a500e-791e-461f-8043-6820a6dff575-container.json 349byte
    ││││││├─b39346df-54f0-4b7f-91ac-12633c0e57b0-container.json 258byte
    ││││││├─b43d9623-9250-4f1e-8222-ddcc33f64c7e-container.json 349byte
    ││││││├─b4d6e498-ca49-4411-b2e4-1405a8838abf-result.json 3.3KB
    ││││││├─b530b8ec-56e2-47d2-beab-8d33c69fbe70-container.json 258byte
    ││││││├─b6e0f262-a07f-4a81-a397-8fa8db8ff880-container.json 258byte
    ││││││├─b82fb0f3-9b20-48c2-a3d6-98c8d8261c19-container.json 258byte
    ││││││├─b8d9d68a-ade5-4311-81ab-4cd7cbf5e3ed-container.json 749byte
    ││││││├─b8f7d98e-96ce-49c3-914c-1d2ddd87734d-container.json 258byte
    ││││││├─babeef23-462f-4118-b7de-bdfbc2b5ba2b-result.json 3.3KB
    ││││││├─bb33e59b-47d3-49ff-b568-405d0b649554-container.json 349byte
    ││││││├─bcf94ec1-a85f-43db-a747-5d3394115e9a-container.json 258byte
    ││││││├─be05b1e0-1b05-4aa1-b5df-b61646dada63-result.json 617byte
    ││││││├─be0ac4e8-75f0-4c88-bd1e-c91176c31b50-container.json 429byte
    ││││││├─be16c83b-0984-46da-bdcb-ac48df762fc5-container.json 349byte
    ││││││├─be8dd587-7d5a-40d2-9d03-f146dc229ccb-container.json 349byte
    ││││││├─beb6b33e-4322-47a9-ae8a-fde2cd960362-container.json 258byte
    ││││││├─bf11f05c-191c-4f0f-b912-13e6f16bcded-container.json 349byte
    ││││││├─c0986b66-0dce-4478-8a8e-de47a97e73c3-container.json 349byte
    ││││││├─c42430a1-4786-4d3d-ac55-1f9f78e79cad-container.json 258byte
    ││││││├─c42eb62d-5d92-4b0f-a607-00e634d446b1-container.json 349byte
    ││││││├─c44360c5-8df9-4dda-9643-e957c2da82c2-container.json 258byte
    ││││││├─c8af7dfe-1b65-46e6-b5d4-f0369bced8d4-container.json 258byte
    ││││││├─c969e931-5fad-4c15-b101-3ec5ab66703a-result.json 968byte
    ││││││├─ca3279ed-7078-4053-9efd-6f26f0da3cab-container.json 349byte
    ││││││├─cd424eb2-8f0e-4794-aec8-732253a1f096-container.json 349byte
    ││││││├─ce1750ca-32d3-4f20-89cb-6ca29ddc9ce5-result.json 1.3KB
    ││││││├─ce321e6e-c7d0-4f55-a960-4faaea5fb2f2-container.json 258byte
    ││││││├─ce3741ab-b89f-440d-aa2c-e008ed78a557-container.json 258byte
    ││││││├─ce7d6cdb-691c-4e69-a0b9-fcabd71548d3-result.json 967byte
    ││││││├─d19f0abb-e5c5-4b97-93f0-1ac21749ceaf-result.json 3.3KB
    ││││││├─d2353767-b006-49cb-aaed-65c3fba843ca-container.json 258byte
    ││││││├─d3ee746a-84ac-4739-b3b4-455321560225-container.json 349byte
    ││││││├─d46ed709-92f7-42a3-97db-a83ae224997a-result.json 3.3KB
    ││││││├─d59cae0f-cb05-416d-8eb7-63cb70397a0d-container.json 349byte
    ││││││├─d624c990-ec37-42d0-9ecc-0007526e15b8-result.json 3.3KB
    ││││││├─d6a45713-7e76-4b08-971c-bf8adb710cc3-container.json 349byte
    ││││││├─d6eaa9ae-7d4c-4979-8e5c-fe3199cea06e-container.json 349byte
    ││││││├─d8f46d71-dad3-4f35-960f-acdf6b5ae2fd-result.json 1.3KB
    ││││││├─d967fe1e-2c0a-470c-b644-387a04ab9c51-container.json 349byte
    ││││││├─d99efbdb-f5a9-48d4-820e-46a038d1a93c-container.json 258byte
    ││││││├─d9b39eff-6052-49c3-a952-89eb43290364-container.json 258byte
    ││││││├─dad7f4db-85a5-4711-978b-ae357ca9d222-container.json 349byte
    ││││││├─db237286-3dfb-4f46-bc09-f3092521725e-result.json 617byte
    ││││││├─dc122a07-e48a-452b-92d2-5297e4ce7117-result.json 3.3KB
    ││││││├─dc6bc3ab-dda1-453b-8561-ae7edbb66c62-container.json 349byte
    ││││││├─de487d6e-411f-43f1-848e-45800f983757-result.json 2.2KB
    ││││││├─df6e7b47-9e48-47a3-979d-9a98d49f18c0-result.json 3.3KB
    ││││││├─dfafe744-5d67-4078-a22c-2a5c2364fc52-result.json 1.3KB
    ││││││├─e134f44e-8ddb-47e3-9ba4-b77ad800cde6-result.json 53.2KB
    ││││││├─e2948f68-62d8-467b-baed-dff6964d51bc-result.json 617byte
    ││││││├─e2da4875-636f-4a52-a6fc-781e6ac5e684-result.json 1.4KB
    ││││││├─e2f89e41-48e0-4f59-bad3-7145bba455d8-container.json 258byte
    ││││││├─e4d2e558-f5f6-4929-804f-9c2ba6a793ab-result.json 53.2KB
    ││││││├─e4de0227-5389-4409-9db6-1813f03e19ae-result.json 2.2KB
    ││││││├─e62b4cd8-9f5a-4f59-a36c-b1a9f362560b-container.json 258byte
    ││││││├─e68cfaa0-51e7-4f2e-8028-dc96ffbc2f00-container.json 349byte
    ││││││├─e766640e-ce43-4df3-8d65-78ce911da52f-container.json 749byte
    ││││││├─e84db5c6-da47-445c-812d-a8820b5162e2-result.json 3.3KB
    ││││││├─e8cfaa3a-ac99-4588-959a-30d706c97766-container.json 258byte
    ││││││├─e8d29470-ecb7-4849-82d4-8f32742865cd-container.json 258byte
    ││││││├─e98d2c73-a00e-40c4-b51c-9f2f85c14299-container.json 349byte
    ││││││├─ee0c93d5-0d07-4a3d-88ef-44aab6fe2e66-container.json 349byte
    ││││││├─ee2cdc8a-e2ac-4b80-a388-f461cef87238-container.json 349byte
    ││││││├─eea7b5d5-1e37-4d94-9b91-cd10aedcf1e2-result.json 3.3KB
    ││││││├─f370acf8-1ff6-4f37-93ee-72fad303175c-container.json 258byte
    ││││││├─f4d2bec7-d363-4f63-8eaf-fc01c8dee842-result.json 1.4KB
    ││││││├─f7c5c4a9-2413-4024-b826-864489dd8435-container.json 258byte
    ││││││├─f7cc3060-0648-4a9a-bdee-1761d26b671e-container.json 349byte
    ││││││├─f819d75b-7e98-491d-a37d-ef2cd623d91f-container.json 349byte
    ││││││├─fbe023fb-ab88-4d4a-a0f6-a3565ebc8e0f-result.json 3.3KB
    │││││Utils/
    ││││││├─Cfg.py 399byte
    ││││││├─Database.py 1.8KB
    ││││││├─GetKeywords.py 2.1KB
    ││││││├─OperationData.py 4KB
    ││││││├─SendMethod.py 1.9KB
    ││││││├─__init__.py 187byte
    ││││││├─__pycache__
    ││││││__pycache__/
    │││││││├─Cfg.cpython-37.pyc 614byte
    │││││││├─GetKeywords.cpython-37.pyc 1.8KB
    │││││││├─SendMethod.cpython-37.pyc 1.4KB
    │││││││├─__init__.cpython-37.pyc 265byte
    │││││allure-report/
    ││││││├─app.js 679.2KB
    ││││││├─data
    ││││││├─export
    ││││││├─favicon.ico
    ││││││├─history
    ││││││├─index.html 657byte
    ││││││├─plugins
    ││││││├─styles.css 1.5MB
    ││││││├─widgets
    ││││││data/
    │││││││├─attachments
    │││││││├─behaviors.csv 161byte
    │││││││├─behaviors.json 13.1KB
    │││││││├─categories.csv 131byte
    │││││││├─categories.json 6.1KB
    │││││││├─packages.json 12.4KB
    │││││││├─suites.csv 3.4KB
    │││││││├─suites.json 13.1KB
    │││││││├─test-cases
    │││││││├─timeline.json 40.4KB
    │││││││test-cases/
    ││││││││├─107144845dceabdf.json 55.6KB
    ││││││││├─145b0693f4b22f84.json 5.6KB
    ││││││││├─145c136b444b5bb.json 5.6KB
    ││││││││├─1818a83852e043a.json 4.3KB
    ││││││││├─1dfbc0e730b41075.json 5.6KB
    ││││││││├─1e9d48060a0b33d9.json 6.6KB
    ││││││││├─218ec18db3a2d9ff.json 5.6KB
    ││││││││├─254ab3aaaace6de9.json 4.3KB
    ││││││││├─29f430ade92006ec.json 7.2KB
    ││││││││├─3034f46b709bbd34.json 1.8KB
    ││││││││├─32938594149c55c5.json 5.1KB
    ││││││││├─3bfc651557df9349.json 3.4KB
    ││││││││├─3f35370239b7341a.json 5.6KB
    ││││││││├─438e0e956ae1fddc.json 3.4KB
    ││││││││├─4442d1cb52cbbe37.json 7.7KB
    ││││││││├─46a2f3a4210e1b8a.json 4.8KB
    ││││││││├─47ea272c4b9e6ca1.json 4.8KB
    ││││││││├─483e52a2472b4bdc.json 5.6KB
    ││││││││├─4b8016eb13cc3c4.json 6.7KB
    ││││││││├─4bea94ce97e0b386.json 2.8KB
    ││││││││├─4d0a36716170a7b6.json 5.1KB
    ││││││││├─5003b87ec2513d6d.json 1.8KB
    ││││││││├─508042c10f3b5e5a.json 6.6KB
    ││││││││├─56bea293eefd1bca.json 7.2KB
    ││││││││├─5afae29afafbe0e8.json 5.6KB
    ││││││││├─5ef1795510a50b5.json 7.2KB
    ││││││││├─6044ba949dfa20c3.json 5.6KB
    ││││││││├─60a10b857173c078.json 5.6KB
    ││││││││├─67509f1d2d2a8384.json 5.6KB
    ││││││││├─6c54ef2f3d2ab334.json 5.6KB
    ││││││││├─6d2dd6cb11998a28.json 5.1KB
    ││││││││├─6d98b9713e12561a.json 5.1KB
    ││││││││├─7103451249388e31.json 4.8KB
    ││││││││├─7299adea7c132b49.json 5.6KB
    ││││││││├─754ecb15a06161bf.json 5.6KB
    ││││││││├─783329c3c591f9ca.json 5.1KB
    ││││││││├─78fae65272de9f4f.json 1.8KB
    ││││││││├─79815bbe6843c240.json 7.2KB
    ││││││││├─7b5e6af41fff7d18.json 13KB
    ││││││││├─7d3335ae6372ac6d.json 5.1KB
    ││││││││├─7d90d61d6979a387.json 3.4KB
    ││││││││├─820dc5d3a5121556.json 1.8KB
    ││││││││├─834d8dedae355906.json 7.2KB
    ││││││││├─872c9eda1c93d6d3.json 5.6KB
    ││││││││├─88be76a77592c897.json 3.3KB
    ││││││││├─8aae5b70ae7ccfec.json 5.6KB
    ││││││││├─91017590bd78d97a.json 4.8KB
    ││││││││├─96e03ae2a520424b.json 5.6KB
    ││││││││├─9837cdb5338c1f3.json 4.3KB
    ││││││││├─a062fc3c7ffdfe41.json 5KB
    ││││││││├─a5bb5a2fd1c25141.json 3.4KB
    ││││││││├─a8f08f842d641f95.json 5.6KB
    ││││││││├─aa3ea594fb61da69.json 2.9KB
    ││││││││├─ac3ffb4419d5286.json 4.8KB
    ││││││││├─af8e22604167f042.json 5.6KB
    ││││││││├─b2706ef30b804f4a.json 5.6KB
    ││││││││├─b2da28b5ab4260a.json 3.4KB
    ││││││││├─b3f2670b3cab56a7.json 4.3KB
    ││││││││├─b4efe7e95d5e3060.json 5.6KB
    ││││││││├─b58072c258e2497f.json 5.1KB
    ││││││││├─c530d8c8619f4f77.json 5.6KB
    ││││││││├─c5359dd743b1fc00.json 5.1KB
    ││││││││├─c7fb1da70e850646.json 7.3KB
    ││││││││├─cb2c4041f83c99f.json 6.6KB
    ││││││││├─cb357ca46f7edb61.json 5.6KB
    ││││││││├─cd51dea3b08cab10.json 55.6KB
    ││││││││├─cf3a039f8d5b9e2f.json 5.1KB
    ││││││││├─d0bc50d5259ea6bd.json 5.6KB
    ││││││││├─d6d17c1fde4e36a3.json 5.6KB
    ││││││││├─d8980b4f7470d493.json 7.2KB
    ││││││││├─d90dc17fab15ec72.json 1.8KB
    ││││││││├─d997b4cbd82c9e67.json 5.6KB
    ││││││││├─ddbfa0bde9d5e7aa.json 5.6KB
    ││││││││├─de6a71e7a4e56ab3.json 5.6KB
    ││││││││├─e172347a8c631877.json 5.6KB
    ││││││││├─e23bcb46811e3ac8.json 1.8KB
    ││││││││├─e971b122948334c0.json 4.8KB
    ││││││││├─e9e2b7cfb3fa0b39.json 5.6KB
    ││││││││├─ea559d641fb8d07d.json 5.6KB
    ││││││││├─fa0d63d9f88a7612.json 5.1KB
    ││││││export/
    │││││││├─influxDbData.txt 606byte
    │││││││├─mail.html 148byte
    │││││││├─prometheusData.txt 346byte
    ││││││history/
    │││││││├─categories-trend.json 79byte
    │││││││├─duration-trend.json 52byte
    │││││││├─history-trend.json 143byte
    │││││││├─history.json 10.7KB
    │││││││├─retry-trend.json 62byte
    ││││││plugins/
    │││││││├─behaviors
    │││││││├─jira
    │││││││├─junit
    │││││││├─packages
    │││││││├─screen-diff
    │││││││├─trx
    │││││││├─xctest
    │││││││├─xray
    │││││││├─xunit-xml
    │││││││behaviors/
    ││││││││├─index.js 3.7KB
    │││││││packages/
    ││││││││├─index.js 1.9KB
    │││││││screen-diff/
    ││││││││├─index.js 6.9KB
    ││││││││├─styles.css 436byte
    ││││││widgets/
    │││││││├─behaviors.json 280byte
    │││││││├─categories-trend.json 79byte
    │││││││├─categories.json 521byte
    │││││││├─duration-trend.json 52byte
    │││││││├─duration.json 5.3KB
    │││││││├─environment.json 3byte
    │││││││├─executors.json 3byte
    │││││││├─history-trend.json 143byte
    │││││││├─launch.json 3byte
    │││││││├─retry-trend.json 62byte
    │││││││├─severity.json 5.3KB
    │││││││├─status-chart.json 5.3KB
    │││││││├─suites.json 271byte
    │││││││├─summary.json 382byte
    │││doc/
    ││││├─接口测试_pytest框架.docx 768KB
    ││││├─项目.md 743byte
    ││││├─项目信息.txt 399byte
    │││img/
    ││││├─F12复制curl.png 44.2KB
    ││││├─F12清缓存.png 76.8KB
    ││││├─优惠券.png 36.9KB
    ││││├─订单.png 62.6KB
    ││││├─购物车.png 51.8KB
    ││2023-06-25接口自动化项目day06/
    │││├─code
    │││├─doc
    │││├─resource
    │││├─video
    │││code/
    ││││├─InterfaceTest
    ││││├─flask项目–加密版本
    ││││├─学员项目
    ││││InterfaceTest/
    │││││├─.idea
    │││││├─.pytest_cache
    │││││├─Case
    │││││├─Config
    │││││├─Data
    │││││├─Interface
    │││││├─Report
    │││││├─Utils
    │││││├─allure-report
    │││││├─pytest.ini 116byte
    │││││.idea/
    ││││││├─InterfaceTest.iml 405byte
    ││││││├─inspectionProfiles
    ││││││├─misc.xml 192byte
    ││││││├─modules.xml 285byte
    ││││││├─workspace.xml 14KB
    ││││││inspectionProfiles/
    │││││││├─Project_Default.xml 404byte
    │││││││├─profiles_settings.xml 174byte
    │││││.pytest_cache/
    ││││││├─.gitignore 39byte
    ││││││├─CACHEDIR.TAG 191byte
    ││││││├─README.md 310byte
    ││││││├─v
    ││││││v/
    │││││││├─cache
    │││││││cache/
    ││││││││├─lastfailed 414byte
    ││││││││├─nodeids 3.4KB
    ││││││││├─stepwise 2byte
    │││││Case/
    ││││││├─conftest.py 2.6KB
    ││││││├─test_01_generate_order.py 3.1KB
    │││││Config/
    ││││││├─TestUrl.py 207byte
    ││││││├─__init__.py 187byte
    ││││││├─__pycache__
    ││││││├─db.ini 115byte
    ││││││__pycache__/
    │││││││├─TestUrl.cpython-37.pyc 343byte
    │││││││├─__init__.cpython-37.pyc 266byte
    │││││Interface/
    ││││││├─AddressInterface.py 1.1KB
    ││││││├─CartInterface.py 3.1KB
    ││││││├─CouponInterface.py 771byte
    ││││││├─MemberInterface.py 2.6KB
    ││││││├─OrderInterface.py 1.2KB
    ││││││├─__pycache__
    ││││││__pycache__/
    │││││││├─MemberInterface.cpython-37.pyc 2.5KB
    │││││Report/
    ││││││├─01b4aa11-b516-42bf-9d34-c1c2b5ee3710-container.json 349byte
    ││││││├─024e31fd-88b1-4501-b866-bdf403889659-result.json 1.8KB
    ││││││├─0335944c-813c-4f0e-aa13-3bfb550a6448-container.json 349byte
    ││││││├─045f5dbb-d43e-435c-8ebd-08f9da77783a-container.json 258byte
    ││││││├─0563f446-7c33-49ce-ad54-241235118b33-container.json 349byte
    ││││││├─057bb20c-3594-486a-9358-00a01fa16a42-result.json 1.3KB
    ││││││├─09465019-3e27-480e-a300-4a3f2b5692dc-container.json 258byte
    ││││││├─0979655c-2647-4094-91eb-432767aee480-container.json 258byte
    ││││││├─09bae212-b41b-4b2d-8f59-f29d6d458e1c-result.json 2.2KB
    ││││││├─0a17ab2e-a384-48db-91b3-c731953f6b94-result.json 1.4KB
    ││││││├─0bce409d-3333-4bd3-b569-a157419ac1fc-container.json 258byte
    ││││││├─0befcbeb-b022-452a-9d67-f3a1c3129d3e-container.json 258byte
    ││││││├─11aca095-06d2-4739-8812-6349910484a5-container.json 349byte
    ││││││├─12cb0415-e302-4cf9-923d-b41d59a16e4b-result.json 3.3KB
    ││││││├─12e25a06-522b-4833-9898-c02d4d087a46-container.json 349byte
    ││││││├─132e0666-9209-40a7-a5c8-c1bcfc3f3183-container.json 258byte
    ││││││├─1441d2f4-3906-4bbf-9ad3-b0a45cab3738-result.json 3.3KB
    ││││││├─19d0e039-4e4b-48ab-b7cd-23c5ae8fe406-result.json 3.3KB
    ││││││├─19df04f8-0134-44bc-b631-df24bf44a419-result.json 970byte
    ││││││├─1a444302-8b78-4323-b253-b40b2b6b3f23-result.json 1.3KB
    ││││││├─1adf8163-5fed-4eae-a22b-af6ddd1064d7-result.json 3.3KB
    ││││││├─1cad5d64-caf5-4e38-aaba-b7473c02125f-result.json 3.3KB
    ││││││├─1e78806f-e0a4-4f63-8c57-5535e539b9e5-result.json 1.8KB
    ││││││├─1e8c8aee-be48-44d8-89b4-cee775016736-container.json 349byte
    ││││││├─20e6e05e-78b5-43af-ac56-638d5384260d-result.json 2.3KB
    ││││││├─2244aa2b-ecf7-4dd9-b55a-220cdd30b863-container.json 349byte
    ││││││├─23ab251f-29bb-4bc3-a51e-044690d0d75b-result.json 617byte
    ││││││├─2618f0d7-a4a8-4c52-a056-6fa1556debfe-result.json 1.3KB
    ││││││├─262de86c-550f-4d7d-bb12-3a50314a3190-container.json 258byte
    ││││││├─26c637da-4598-4877-8082-5fa73b71c67e-container.json 349byte
    ││││││├─26c64934-0635-48b4-b23e-952746b74c03-container.json 349byte
    ││││││├─28183428-9a3c-4eba-9d4d-66ec1db493e1-result.json 3.3KB
    ││││││├─28c4b4c4-69f9-409b-9e23-7ba9b506b4c3-result.json 2.3KB
    ││││││├─28edf759-641a-425d-a083-c44ee90cc711-container.json 349byte
    ││││││├─29642acc-df98-44eb-80c3-6eabd685c709-container.json 258byte
    ││││││├─2b7155cc-0e45-43c0-815a-9923b15d3c30-container.json 349byte
    ││││││├─2be5931b-1387-46b5-9984-9b4929caad09-container.json 349byte
    ││││││├─2c145333-fc11-44b3-9036-79478161ac97-result.json 1.4KB
    ││││││├─2c7edd03-beda-4566-babd-7a2b311869fd-container.json 349byte
    ││││││├─2d2c1341-353a-4c8d-a2ad-3a0151ca8852-container.json 349byte
    ││││││├─2e4a3465-5e6f-42b5-8fbb-f2b9b0fd8b91-result.json 3.3KB
    ││││││├─2f82d2e8-2603-4102-9c6b-3b66e133c3eb-container.json 349byte
    ││││││├─30b4b7fb-1eff-4ea4-9f26-c8b9b1de1fcc-container.json 258byte
    ││││││├─32819f4c-80fa-4be0-b780-6c76917dc73e-result.json 3.3KB
    ││││││├─378b9dbd-f0f7-4239-9494-bd3813b14225-result.json 948byte
    ││││││├─37b8efb0-b00f-4346-b4ce-c7cb3cbd6591-container.json 349byte
    ││││││├─37dab30b-9416-46c7-b380-2ef393749f51-container.json 749byte
    ││││││├─38d6bcc4-2b84-4284-9433-700f8ddb9968-result.json 3.3KB
    ││││││├─39076058-a2fc-4752-97a8-6bfe3437181a-container.json 258byte
    ││││││├─397e94a1-69b3-4a35-9f7b-0ffbc915cb96-container.json 749byte
    ││││││├─3a170531-8deb-449d-b102-d3b9957ea169-container.json 258byte
    ││││││├─3acc1ed8-e188-4d4c-a529-0ebdf719c813-container.json 349byte
    ││││││├─3b003235-3069-4d56-870e-5b3485fdf69a-container.json 258byte
    ││││││├─3cf51e7d-ed76-4dff-9b41-84632677038e-result.json 1.4KB
    ││││││├─3e856447-8c33-41e2-83ef-60de2dd33f4a-container.json 349byte
    ││││││├─3f137732-24de-49aa-9233-420db79f6ade-container.json 258byte
    ││││││├─412f8bc9-de1e-44e4-8b84-d16b441c04f7-container.json 349byte
    ││││││├─41d63df8-fb7e-4fde-bdbe-bcc2355d488c-container.json 349byte
    ││││││├─439b7392-662c-4517-adc8-4e185a906b06-result.json 1.8KB
    ││││││├─4600e7a4-d56c-436f-8662-de9826c12f63-result.json 1.3KB
    ││││││├─468266a4-e68b-45bb-a86e-3e5160cd52d0-container.json 258byte
    ││││││├─477dc6d7-cf9a-4f16-9841-2bbf6866a2e4-container.json 258byte
    ││││││├─490e5d31-2b8a-45e5-b364-149cd11b1454-container.json 258byte
    ││││││├─4a7b4bd2-354a-4ba2-ae9a-92fd50f59e81-result.json 3.3KB
    ││││││├─4b643c61-fcd2-4ccd-8705-3849669dfe3f-result.json 1.3KB
    ││││││├─4c089aa8-4458-49ec-b063-37f41f2d8351-container.json 258byte
    ││││││├─4dc53863-db0f-459c-80a3-289142cb7d61-result.json 1.3KB
    ││││││├─50049f1e-7120-44f1-b053-bd35704dae1d-container.json 349byte
    ││││││├─500aa24c-e897-4ac9-ae10-28beb1ad2fa6-container.json 349byte
    ││││││├─507cb444-6166-44a0-a474-e6ca127fc51e-container.json 349byte
    ││││││├─5135efa3-7341-4b2a-9912-f109b33cecbb-container.json 349byte
    ││││││├─527ebe4b-2d46-41a2-a01d-a67752e8a025-container.json 349byte
    ││││││├─52eaa394-8ea9-4c0f-8d9f-92a22d340649-container.json 258byte
    ││││││├─530b8ce0-eab2-441e-bc4b-d5a7368619f1-container.json 258byte
    ││││││├─53a71869-353a-4e23-b7bc-9d3927376589-container.json 258byte
    ││││││├─53d5fca2-51ed-43cb-bd70-c4ea6a9f4fc4-container.json 258byte
    ││││││├─5522d6b3-1b60-4330-a6fe-07308ffce1c9-container.json 258byte
    ││││││├─565469be-526e-44b0-8fa7-7461235466a4-container.json 349byte
    ││││││├─56b97d21-ef98-4334-9bf0-500fa2941c79-result.json 2.3KB
    ││││││├─58c41c63-f229-4e9b-9571-9e3debbabda7-container.json 258byte
    ││││││├─593c4332-493e-4dde-a45d-d2e0a9477934-container.json 258byte
    ││││││├─5963330a-60a7-4bcc-a438-7e4b1133318c-result.json 3.3KB
    ││││││├─5c859289-6634-447a-a802-1d1add61e8c4-result.json 616byte
    ││││││├─5d204634-68b9-4d95-a1d8-5faf59e4b2aa-container.json 258byte
    ││││││├─5e7e302d-b26f-4964-8b65-9046dbb751eb-container.json 349byte
    ││││││├─5e81e966-3ec2-470c-a0c2-f8e6028785f7-container.json 349byte
    ││││││├─5ebca28b-9473-4c3e-9680-2e6bcda1ce93-container.json 258byte
    ││││││├─605faf30-69f0-4a08-a17a-0ee174ad4a65-container.json 258byte
    ││││││├─60da2a1d-c904-40cf-b7a9-dc6284a3734a-result.json 3.3KB
    ││││││├─613a1903-4455-4034-989d-84c31872aa5a-container.json 258byte
    ││││││├─62abae20-307f-4b3d-948a-dd28e9284b6b-container.json 349byte
    ││││││├─63059b32-f6f9-4287-beea-382ece60dec0-container.json 349byte
    ││││││├─64834b40-a892-4713-9865-f5aeadeb077f-container.json 258byte
    ││││││├─651c1083-96f6-41cc-b16b-79449064c895-container.json 349byte
    ││││││├─65382904-9602-492f-b5f9-1e9356feb4b4-container.json 349byte
    ││││││├─699c61d0-3bb2-4df3-a872-85ab70c945a6-container.json 349byte
    ││││││├─6b3f9382-c128-497c-8f92-88ad62cb76d1-container.json 258byte
    ││││││├─6bbc43a8-d68b-403b-adb3-61897efd1ce3-result.json 2.2KB
    ││││││├─6ccd727c-2349-4b98-96e3-30cd119e2989-container.json 349byte
    ││││││├─6d1d4b6e-621a-4b84-846e-367907c6b5f9-container.json 258byte
    ││││││├─6ef665de-293d-4d3d-99e6-a69667dd07b9-container.json 258byte
    ││││││├─6f195cd3-1838-4609-ac2c-06480a847a6d-container.json 258byte
    ││││││├─6f420cf5-066e-483c-86ee-01fb723c8da9-container.json 258byte
    ││││││├─70c719e5-76b0-4acc-88d3-61dbda483ee8-container.json 258byte
    ││││││├─71a2427c-7502-43f8-a840-ad29aefefcd2-container.json 258byte
    ││││││├─73d68945-d4a1-4f58-8ffa-4f5e2527382f-result.json 1.3KB
    ││││││├─75342142-667b-4a64-9d3e-79b438714f5b-container.json 349byte
    ││││││├─7539edb1-3707-461b-81b6-0649ede15f8c-container.json 349byte
    ││││││├─7764a1fc-1594-4c0f-9590-cb1a1cfb09a6-result.json 2.2KB
    ││││││├─7a26cfa2-8942-4722-9bb8-83a6c75b9aea-result.json 3.3KB
    ││││││├─7a72516c-9204-4beb-a3c3-5401023141fb-container.json 749byte
    ││││││├─7b608823-04f6-430c-83d6-174675235be9-container.json 258byte
    ││││││├─7c67b6e3-330b-4498-803e-4f9093db8fce-result.json 3.3KB
    ││││││├─7c9a30e3-7064-4a3b-bcb0-4ab096ff5ffa-result.json 3.3KB
    ││││││├─7ce83326-e396-445f-a510-00bd2fc8c5b0-container.json 349byte
    ││││││├─7d09adda-88f4-464a-b78d-c2add1fdc20a-container.json 349byte
    ││││││├─7d1c7203-eaf0-4778-9de3-cd1266b8ca10-container.json 349byte
    ││││││├─7d8a37e2-6a01-4a85-bff0-6a6c1138554e-result.json 2.2KB
    ││││││├─7f723450-3d96-46cf-a33a-667460014350-container.json 258byte
    ││││││├─7f909160-a833-439c-9a5c-6a3968361aae-result.json 1.3KB
    ││││││├─82a3cc9f-ce7a-44e3-b80d-b8a50f3daf19-result.json 3.3KB
    ││││││├─82d819e0-0bd1-401d-ac0e-99fbcd09bb8e-result.json 2.3KB
    ││││││├─831ef2ec-6130-400b-90d2-6411e3969a32-container.json 258byte
    ││││││├─84937684-db57-4348-a4c6-a277592acfb1-result.json 957byte
    ││││││├─86c38853-d101-4947-b13f-2d62bbdc58b7-container.json 258byte
    ││││││├─86f6811c-e361-4a88-aa04-7f82787f5775-container.json 349byte
    ││││││├─87a43843-8aa1-4452-8802-eaa428234834-result.json 1.3KB
    ││││││├─882ee990-4781-4864-b6e2-aed9153ec653-result.json 1.3KB
    ││││││├─8a204ba4-5a87-40bd-bc7b-3ad306546a95-result.json 499byte
    ││││││├─8b3fbd99-07ac-4342-a246-16aad4253715-result.json 958byte
    ││││││├─8b7013a4-b685-4579-ac7a-a3e189cff592-result.json 3.3KB
    ││││││├─8bc900cc-cf22-4d60-8373-9c96516b9695-container.json 258byte
    ││││││├─8bf3b92e-e7bd-4d55-ae62-212113d915fe-container.json 349byte
    ││││││├─8dd355ec-1104-458d-889e-cd5a76e2116d-result.json 3.3KB
    ││││││├─8e26187e-ce22-4aa4-8ee2-8763ab1a9d04-container.json 349byte
    ││││││├─8ef25842-1666-4f8a-a58b-d893f26b439a-container.json 349byte
    ││││││├─8fd17012-6c03-42a7-a795-26b74f12331f-result.json 3.3KB
    ││││││├─90541948-d978-406c-808b-4747e7a69eb2-container.json 349byte
    ││││││├─909e848c-b788-4861-b5b3-3580d980f391-container.json 258byte
    ││││││├─912ebec7-f183-4b93-af58-e89df15e2d6e-container.json 258byte
    ││││││├─91a41562-6d37-4b14-9298-4e0c14c445dd-container.json 258byte
    ││││││├─930c607f-0a88-4b43-8333-2f28c2787eeb-container.json 349byte
    ││││││├─93709b0c-a010-4e29-8589-49f459b6c625-container.json 258byte
    ││││││├─948e2334-4644-406f-8cbc-e4968c0106ce-result.json 616byte
    ││││││├─98b2f2af-1649-4577-b613-174f2c4974e8-result.json 1.9KB
    ││││││├─98b5777e-896c-4e5c-ab70-2cb3da249b85-result.json 2.2KB
    ││││││├─98c51097-edba-49bd-9ef7-829492272581-result.json 3.3KB
    ││││││├─9914f8b4-624c-462f-92b4-865b8724514c-result.json 616byte
    ││││││├─9a8ace31-c929-44ab-a848-bd05a5a8743c-container.json 349byte
    ││││││├─9b3ad1fb-3129-4896-b94f-6baa8ce8acc4-container.json 258byte
    ││││││├─9b6a155c-34dd-4522-9046-cbf2d5fd12b9-container.json 349byte
    ││││││├─9c794b15-e12d-42e0-9144-a39ab50a20a8-result.json 2.2KB
    ││││││├─9c7fe5f1-04b1-4bc5-8ef9-dda71c2fa46f-container.json 258byte
    ││││││├─9cfb751d-3c06-48a2-86fa-d72dc69c3884-container.json 258byte
    ││││││├─9d17621c-9c0e-410b-a894-259b93a49dbc-container.json 349byte
    ││││││├─9fa0e0bd-d502-44f5-9f95-a1a653805a1c-container.json 258byte
    ││││││├─a0f0b44f-f4e4-4fee-a7d8-d0ab46517746-container.json 258byte
    ││││││├─a643af71-b85f-4e5f-bfc1-bb0d6e424105-container.json 749byte
    ││││││├─a8912469-15e7-4f14-b034-4a55d08325a0-container.json 349byte
    ││││││├─a9e11194-cb28-49de-ad31-632a8c0b1dde-container.json 349byte
    ││││││├─ab31bb2c-94fb-4597-900d-c9f78aabed7f-container.json 258byte
    ││││││├─ad298f06-a134-4097-bb9d-25743067df89-container.json 749byte
    ││││││├─ade51f8e-3007-470d-9e92-0d111351d155-container.json 258byte
    ││││││├─b24a500e-791e-461f-8043-6820a6dff575-container.json 349byte
    ││││││├─b39346df-54f0-4b7f-91ac-12633c0e57b0-container.json 258byte
    ││││││├─b43d9623-9250-4f1e-8222-ddcc33f64c7e-container.json 349byte
    ││││││├─b4d6e498-ca49-4411-b2e4-1405a8838abf-result.json 3.3KB
    ││││││├─b530b8ec-56e2-47d2-beab-8d33c69fbe70-container.json 258byte
    ││││││├─b6e0f262-a07f-4a81-a397-8fa8db8ff880-container.json 258byte
    ││││││├─b82fb0f3-9b20-48c2-a3d6-98c8d8261c19-container.json 258byte
    ││││││├─b8d9d68a-ade5-4311-81ab-4cd7cbf5e3ed-container.json 749byte
    ││││││├─b8f7d98e-96ce-49c3-914c-1d2ddd87734d-container.json 258byte
    ││││││├─babeef23-462f-4118-b7de-bdfbc2b5ba2b-result.json 3.3KB
    ││││││├─bb33e59b-47d3-49ff-b568-405d0b649554-container.json 349byte
    ││││││├─bcf94ec1-a85f-43db-a747-5d3394115e9a-container.json 258byte
    ││││││├─be05b1e0-1b05-4aa1-b5df-b61646dada63-result.json 617byte
    ││││││├─be0ac4e8-75f0-4c88-bd1e-c91176c31b50-container.json 429byte
    ││││││├─be16c83b-0984-46da-bdcb-ac48df762fc5-container.json 349byte
    ││││││├─be8dd587-7d5a-40d2-9d03-f146dc229ccb-container.json 349byte
    ││││││├─beb6b33e-4322-47a9-ae8a-fde2cd960362-container.json 258byte
    ││││││├─bf11f05c-191c-4f0f-b912-13e6f16bcded-container.json 349byte
    ││││││├─c0986b66-0dce-4478-8a8e-de47a97e73c3-container.json 349byte
    ││││││├─c42430a1-4786-4d3d-ac55-1f9f78e79cad-container.json 258byte
    ││││││├─c42eb62d-5d92-4b0f-a607-00e634d446b1-container.json 349byte
    ││││││├─c44360c5-8df9-4dda-9643-e957c2da82c2-container.json 258byte
    ││││││├─c8af7dfe-1b65-46e6-b5d4-f0369bced8d4-container.json 258byte
    ││││││├─c969e931-5fad-4c15-b101-3ec5ab66703a-result.json 968byte
    ││││││├─ca3279ed-7078-4053-9efd-6f26f0da3cab-container.json 349byte
    ││││││├─cd424eb2-8f0e-4794-aec8-732253a1f096-container.json 349byte
    ││││││├─ce1750ca-32d3-4f20-89cb-6ca29ddc9ce5-result.json 1.3KB
    ││││││├─ce321e6e-c7d0-4f55-a960-4faaea5fb2f2-container.json 258byte
    ││││││├─ce3741ab-b89f-440d-aa2c-e008ed78a557-container.json 258byte
    ││││││├─ce7d6cdb-691c-4e69-a0b9-fcabd71548d3-result.json 967byte
    ││││││├─d19f0abb-e5c5-4b97-93f0-1ac21749ceaf-result.json 3.3KB
    ││││││├─d2353767-b006-49cb-aaed-65c3fba843ca-container.json 258byte
    ││││││├─d3ee746a-84ac-4739-b3b4-455321560225-container.json 349byte
    ││││││├─d46ed709-92f7-42a3-97db-a83ae224997a-result.json 3.3KB
    ││││││├─d59cae0f-cb05-416d-8eb7-63cb70397a0d-container.json 349byte
    ││││││├─d624c990-ec37-42d0-9ecc-0007526e15b8-result.json 3.3KB
    ││││││├─d6a45713-7e76-4b08-971c-bf8adb710cc3-container.json 349byte
    ││││││├─d6eaa9ae-7d4c-4979-8e5c-fe3199cea06e-container.json 349byte
    ││││││├─d8f46d71-dad3-4f35-960f-acdf6b5ae2fd-result.json 1.3KB
    ││││││├─d967fe1e-2c0a-470c-b644-387a04ab9c51-container.json 349byte
    ││││││├─d99efbdb-f5a9-48d4-820e-46a038d1a93c-container.json 258byte
    ││││││├─d9b39eff-6052-49c3-a952-89eb43290364-container.json 258byte
    ││││││├─dad7f4db-85a5-4711-978b-ae357ca9d222-container.json 349byte
    ││││││├─db237286-3dfb-4f46-bc09-f3092521725e-result.json 617byte
    ││││││├─dc122a07-e48a-452b-92d2-5297e4ce7117-result.json 3.3KB
    ││││││├─dc6bc3ab-dda1-453b-8561-ae7edbb66c62-container.json 349byte
    ││││││├─de487d6e-411f-43f1-848e-45800f983757-result.json 2.2KB
    ││││││├─df6e7b47-9e48-47a3-979d-9a98d49f18c0-result.json 3.3KB
    ││││││├─dfafe744-5d67-4078-a22c-2a5c2364fc52-result.json 1.3KB
    ││││││├─e134f44e-8ddb-47e3-9ba4-b77ad800cde6-result.json 53.2KB
    ││││││├─e2948f68-62d8-467b-baed-dff6964d51bc-result.json 617byte
    ││││││├─e2da4875-636f-4a52-a6fc-781e6ac5e684-result.json 1.4KB
    ││││││├─e2f89e41-48e0-4f59-bad3-7145bba455d8-container.json 258byte
    ││││││├─e4d2e558-f5f6-4929-804f-9c2ba6a793ab-result.json 53.2KB
    ││││││├─e4de0227-5389-4409-9db6-1813f03e19ae-result.json 2.2KB
    ││││││├─e62b4cd8-9f5a-4f59-a36c-b1a9f362560b-container.json 258byte
    ││││││├─e68cfaa0-51e7-4f2e-8028-dc96ffbc2f00-container.json 349byte
    ││││││├─e766640e-ce43-4df3-8d65-78ce911da52f-container.json 749byte
    ││││││├─e84db5c6-da47-445c-812d-a8820b5162e2-result.json 3.3KB
    ││││││├─e8cfaa3a-ac99-4588-959a-30d706c97766-container.json 258byte
    ││││││├─e8d29470-ecb7-4849-82d4-8f32742865cd-container.json 258byte
    ││││││├─e98d2c73-a00e-40c4-b51c-9f2f85c14299-container.json 349byte
    ││││││├─ee0c93d5-0d07-4a3d-88ef-44aab6fe2e66-container.json 349byte
    ││││││├─ee2cdc8a-e2ac-4b80-a388-f461cef87238-container.json 349byte
    ││││││├─eea7b5d5-1e37-4d94-9b91-cd10aedcf1e2-result.json 3.3KB
    ││││││├─f370acf8-1ff6-4f37-93ee-72fad303175c-container.json 258byte
    ││││││├─f4d2bec7-d363-4f63-8eaf-fc01c8dee842-result.json 1.4KB
    ││││││├─f7c5c4a9-2413-4024-b826-864489dd8435-container.json 258byte
    ││││││├─f7cc3060-0648-4a9a-bdee-1761d26b671e-container.json 349byte
    ││││││├─f819d75b-7e98-491d-a37d-ef2cd623d91f-container.json 349byte
    ││││││├─fbe023fb-ab88-4d4a-a0f6-a3565ebc8e0f-result.json 3.3KB
    │││││Utils/
    ││││││├─Cfg.py 399byte
    ││││││├─Database.py 1.8KB
    ││││││├─GetKeywords.py 2.1KB
    ││││││├─OperationData.py 4KB
    ││││││├─SendMethod.py 1.9KB
    ││││││├─__init__.py 187byte
    ││││││├─__pycache__
    ││││││__pycache__/
    │││││││├─Cfg.cpython-37.pyc 614byte
    │││││││├─GetKeywords.cpython-37.pyc 1.8KB
    │││││││├─SendMethod.cpython-37.pyc 1.4KB
    │││││││├─__init__.cpython-37.pyc 265byte
    │││││allure-report/
    ││││││├─app.js 679.2KB
    ││││││├─data
    ││││││├─export
    ││││││├─favicon.ico
    ││││││├─history
    ││││││├─index.html 657byte
    ││││││├─plugins
    ││││││├─styles.css 1.5MB
    ││││││├─widgets
    ││││││data/
    │││││││├─attachments
    │││││││├─behaviors.csv 161byte
    │││││││├─behaviors.json 13.1KB
    │││││││├─categories.csv 131byte
    │││││││├─categories.json 6.1KB
    │││││││├─packages.json 12.4KB
    │││││││├─suites.csv 3.4KB
    │││││││├─suites.json 13.1KB
    │││││││├─test-cases
    │││││││├─timeline.json 40.4KB
    │││││││test-cases/
    ││││││││├─107144845dceabdf.json 55.6KB
    ││││││││├─145b0693f4b22f84.json 5.6KB
    ││││││││├─145c136b444b5bb.json 5.6KB
    ││││││││├─1818a83852e043a.json 4.3KB
    ││││││││├─1dfbc0e730b41075.json 5.6KB
    ││││││││├─1e9d48060a0b33d9.json 6.6KB
    ││││││││├─218ec18db3a2d9ff.json 5.6KB
    ││││││││├─254ab3aaaace6de9.json 4.3KB
    ││││││││├─29f430ade92006ec.json 7.2KB
    ││││││││├─3034f46b709bbd34.json 1.8KB
    ││││││││├─32938594149c55c5.json 5.1KB
    ││││││││├─3bfc651557df9349.json 3.4KB
    ││││││││├─3f35370239b7341a.json 5.6KB
    ││││││││├─438e0e956ae1fddc.json 3.4KB
    ││││││││├─4442d1cb52cbbe37.json 7.7KB
    ││││││││├─46a2f3a4210e1b8a.json 4.8KB
    ││││││││├─47ea272c4b9e6ca1.json 4.8KB
    ││││││││├─483e52a2472b4bdc.json 5.6KB
    ││││││││├─4b8016eb13cc3c4.json 6.7KB
    ││││││││├─4bea94ce97e0b386.json 2.8KB
    ││││││││├─4d0a36716170a7b6.json 5.1KB
    ││││││││├─5003b87ec2513d6d.json 1.8KB
    ││││││││├─508042c10f3b5e5a.json 6.6KB
    ││││││││├─56bea293eefd1bca.json 7.2KB
    ││││││││├─5afae29afafbe0e8.json 5.6KB
    ││││││││├─5ef1795510a50b5.json 7.2KB
    ││││││││├─6044ba949dfa20c3.json 5.6KB
    ││││││││├─60a10b857173c078.json 5.6KB
    ││││││││├─67509f1d2d2a8384.json 5.6KB
    ││││││││├─6c54ef2f3d2ab334.json 5.6KB
    ││││││││├─6d2dd6cb11998a28.json 5.1KB
    ││││││││├─6d98b9713e12561a.json 5.1KB
    ││││││││├─7103451249388e31.json 4.8KB
    ││││││││├─7299adea7c132b49.json 5.6KB
    ││││││││├─754ecb15a06161bf.json 5.6KB
    ││││││││├─783329c3c591f9ca.json 5.1KB
    ││││││││├─78fae65272de9f4f.json 1.8KB
    ││││││││├─79815bbe6843c240.json 7.2KB
    ││││││││├─7b5e6af41fff7d18.json 13KB
    ││││││││├─7d3335ae6372ac6d.json 5.1KB
    ││││││││├─7d90d61d6979a387.json 3.4KB
    ││││││││├─820dc5d3a5121556.json 1.8KB
    ││││││││├─834d8dedae355906.json 7.2KB
    ││││││││├─872c9eda1c93d6d3.json 5.6KB
    ││││││││├─88be76a77592c897.json 3.3KB
    ││││││││├─8aae5b70ae7ccfec.json 5.6KB
    ││││││││├─91017590bd78d97a.json 4.8KB
    ││││││││├─96e03ae2a520424b.json 5.6KB
    ││││││││├─9837cdb5338c1f3.json 4.3KB
    ││││││││├─a062fc3c7ffdfe41.json 5KB
    ││││││││├─a5bb5a2fd1c25141.json 3.4KB
    ││││││││├─a8f08f842d641f95.json 5.6KB
    ││││││││├─aa3ea594fb61da69.json 2.9KB
    ││││││││├─ac3ffb4419d5286.json 4.8KB
    ││││││││├─af8e22604167f042.json 5.6KB
    ││││││││├─b2706ef30b804f4a.json 5.6KB
    ││││││││├─b2da28b5ab4260a.json 3.4KB
    ││││││││├─b3f2670b3cab56a7.json 4.3KB
    ││││││││├─b4efe7e95d5e3060.json 5.6KB
    ││││││││├─b58072c258e2497f.json 5.1KB
    ││││││││├─c530d8c8619f4f77.json 5.6KB
    ││││││││├─c5359dd743b1fc00.json 5.1KB
    ││││││││├─c7fb1da70e850646.json 7.3KB
    ││││││││├─cb2c4041f83c99f.json 6.6KB
    ││││││││├─cb357ca46f7edb61.json 5.6KB
    ││││││││├─cd51dea3b08cab10.json 55.6KB
    ││││││││├─cf3a039f8d5b9e2f.json 5.1KB
    ││││││││├─d0bc50d5259ea6bd.json 5.6KB
    ││││││││├─d6d17c1fde4e36a3.json 5.6KB
    ││││││││├─d8980b4f7470d493.json 7.2KB
    ││││││││├─d90dc17fab15ec72.json 1.8KB
    ││││││││├─d997b4cbd82c9e67.json 5.6KB
    ││││││││├─ddbfa0bde9d5e7aa.json 5.6KB
    ││││││││├─de6a71e7a4e56ab3.json 5.6KB
    ││││││││├─e172347a8c631877.json 5.6KB
    ││││││││├─e23bcb46811e3ac8.json 1.8KB
    ││││││││├─e971b122948334c0.json 4.8KB
    ││││││││├─e9e2b7cfb3fa0b39.json 5.6KB
    ││││││││├─ea559d641fb8d07d.json 5.6KB
    ││││││││├─fa0d63d9f88a7612.json 5.1KB
    ││││││export/
    │││││││├─influxDbData.txt 606byte
    │││││││├─mail.html 148byte
    │││││││├─prometheusData.txt 346byte
    ││││││history/
    │││││││├─categories-trend.json 79byte
    │││││││├─duration-trend.json 52byte
    │││││││├─history-trend.json 143byte
    │││││││├─history.json 10.7KB
    │││││││├─retry-trend.json 62byte
    ││││││plugins/
    │││││││├─behaviors
    │││││││├─jira_20230724_102540
    │││││││├─junit
    │││││││├─packages
    │││││││├─screen-diff
    │││││││├─trx
    │││││││├─xctest
    │││││││├─xray
    │││││││├─xunit-xml
    │││││││behaviors/
    ││││││││├─index.js 3.7KB
    │││││││packages/
    ││││││││├─index.js 1.9KB
    │││││││screen-diff/
    ││││││││├─index.js 6.9KB
    ││││││││├─styles.css 436byte
    ││││││widgets/
    │││││││├─behaviors.json 280byte
    │││││││├─categories-trend.json 79byte
    │││││││├─categories.json 521byte
    │││││││├─duration-trend.json 52byte
    │││││││├─duration.json 5.3KB
    │││││││├─environment.json 3byte
    │││││││├─executors.json 3byte
    │││││││├─history-trend.json 143byte
    │││││││├─launch.json 3byte
    │││││││├─retry-trend.json 62byte
    │││││││├─severity.json 5.3KB
    │││││││├─status-chart.json 5.3KB
    │││││││├─suites.json 271byte
    │││││││├─summary.json 382byte
    ││││flask项目–加密版本/
    │││││├─.idea
    │││││├─01flask框架入门级别讲解.py 1.7KB
    │││││├─Common
    │││││├─Config
    │││││├─FlaskProjectApi.py 8.5KB
    │││││├─RsaTest
    │││││├─__pycache__
    │││││├─cfg.py 382byte
    │││││├─database.py 1.8KB
    │││││.idea/
    ││││││├─.gitignore 295byte
    ││││││├─code.iml 405byte
    ││││││├─dataSources
    ││││││├─dataSources.local.xml 444byte
    ││││││├─dataSources.xml 549byte
    ││││││├─inspectionProfiles
    ││││││├─misc.xml 188byte
    ││││││├─modules.xml 267byte
    ││││││├─workspace.xml 13.4KB
    ││││││dataSources/
    │││││││├─b6ced1dd-ff6e-4445-84b2-76725087ef77
    │││││││├─b6ced1dd-ff6e-4445-84b2-76725087ef77.xml 169.8KB
    │││││││b6ced1dd-ff6e-4445-84b2-76725087ef77/
    ││││││││├─storage_v2
    ││││││││storage_v2/
    │││││││││├─_src_
    │││││││││_src_/
    ││││││││││├─schema
    ││││││││││schema/
    │││││││││││├─information_schema.FNRwLQ.meta 76byte
    ││││││inspectionProfiles/
    │││││││├─profiles_settings.xml 174byte
    │││││Common/
    ││││││├─GenerateSign.py 746byte
    ││││││├─__init__.py 177byte
    ││││││├─__pycache__
    ││││││__pycache__/
    │││││││├─GenerateSign.cpython-37.pyc 857byte
    │││││││├─__init__.cpython-37.pyc 252byte
    │││││Config/
    ││││││├─db.ini 110byte
    │││││RsaTest/
    ││││││├─RsaTest.py 3.4KB
    ││││││├─__init__.py 60byte
    ││││││├─__pycache__
    ││││││├─master-private.pem 886byte
    ││││││├─master-public.pem 271byte
    ││││││__pycache__/
    │││││││├─RsaTest.cpython-37.pyc 3.2KB
    │││││││├─__init__.cpython-37.pyc 258byte
    │││││__pycache__/
    ││││││├─cfg.cpython-37.pyc 586byte
    ││││││├─database.cpython-37.pyc 1.8KB
    ││││学员项目/
    │││││├─.idea
    │││││├─第一组
    │││││├─第三组
    │││││├─第二组
    │││││├─第四组
    │││││.idea/
    ││││││├─.gitignore 311byte
    ││││││├─inspectionProfiles
    ││││││├─misc.xml 192byte
    ││││││├─modules.xml 283byte
    ││││││├─vcs.xml 426byte
    ││││││├─workspace.xml 2.2KB
    ││││││├─学员项目.iml 566byte
    ││││││inspectionProfiles/
    │││││││├─Project_Default.xml 404byte
    │││││││├─profiles_settings.xml 174byte
    │││││第一组/
    ││││││├─mall
    ││││││├─徐彬彬
    ││││││├─王琳
    ││││││├─陈艳秋
    ││││││├─韦欢
    ││││││mall/
    │││││││├─.gitignore 233byte
    │││││││├─Case
    │││││││├─Config
    │││││││├─Interface
    │││││││├─README.en.md 990byte
    │││││││├─README.md 1.3KB
    │││││││├─Utils
    │││││││├─pytest.ini 116byte
    │││││││Case/
    ││││││││├─__init__.py 76byte
    ││││││││├─conftest.py 1.4KB
    ││││││││├─test_01_generate_order.py 2.9KB
    ││││││││├─test_02_member.py 2.1KB
    ││││││││├─test_03_cart.py 5.1KB
    ││││││││├─test_04_address.py 3.3KB
    ││││││││├─test_05_coupon.py 1.5KB
    ││││││││├─test_06_order.py 4.4KB
    │││││││Config/
    ││││││││├─TestUrl.py 207byte
    ││││││││├─__init__.py 187byte
    ││││││││├─__pycache__
    ││││││││├─db.ini 115byte
    ││││││││__pycache__/
    │││││││││├─TestUrl.cpython-37.pyc 361byte
    │││││││││├─__init__.cpython-37.pyc 284byte
    │││││││Interface/
    ││││││││├─AddressInterface.py 2.6KB
    ││││││││├─CartInterface.py 4.5KB
    ││││││││├─CouponInterface.py 1.4KB
    ││││││││├─MemberInterface.py 3.7KB
    ││││││││├─OrderInterface.py 2.7KB
    ││││││││├─__init__.py 76byte
    │││││││Utils/
    ││││││││├─Cfg.py 399byte
    ││││││││├─DataBase.py 1.7KB
    ││││││││├─GetKeyWords.py 2KB
    ││││││││├─OperationData.py 1.2KB
    ││││││││├─SendMethod.py 1.9KB
    ││││││││├─__init__.py 187byte
    ││││││││├─__pycache__
    ││││││││__pycache__/
    │││││││││├─Cfg.cpython-37.pyc 596byte
    │││││││││├─GetKeyWords.cpython-37.pyc 1.7KB
    │││││││││├─SendMethod.cpython-37.pyc 1.3KB
    │││││││││├─__init__.cpython-37.pyc 283byte
    ││││││徐彬彬/
    │││││││├─Case
    │││││││├─Config
    │││││││├─Interface
    │││││││├─README.en.md 990byte
    │││││││├─README.md 1.3KB
    │││││││├─Report
    │││││││├─Utils
    │││││││Case/
    ││││││││├─conftest.py 1.4KB
    ││││││││├─test_01_generate_order.py 2.9KB
    ││││││││├─test_02_member_login.py 1.8KB
    ││││││││├─test_03_cart.py 5.2KB
    ││││││││├─test_04_address.py 3.4KB
    ││││││││├─test_05_coupon.py 1.1KB
    ││││││││├─test_06_order.py 4.2KB
    │││││││Config/
    ││││││││├─TsetUrl.py 158byte
    ││││││││├─__init__.py 78byte
    ││││││││├─__pycache__
    ││││││││├─db.ini 115byte
    ││││││││__pycache__/
    │││││││││├─TsetUrl.cpython-37.pyc 330byte
    │││││││││├─__init__.cpython-37.pyc 197byte
    │││││││Interface/
    ││││││││├─AddressInterface.py 2.5KB
    ││││││││├─CartInterface.py 4.3KB
    ││││││││├─CouponInterface.py 1.2KB
    ││││││││├─MemberInterface.py 3.7KB
    ││││││││├─OrderInterface.py 2.6KB
    ││││││││├─__init__.py 78byte
    ││││││││├─__pycache__
    ││││││││__pycache__/
    │││││││││├─MemberInterface.cpython-37.pyc 3.1KB
    │││││││││├─__init__.cpython-37.pyc 200byte
    │││││││Report/
    ││││││││├─__init__.py 80byte
    │││││││Utils/
    ││││││││├─Cfg.py 399byte
    ││││││││├─Database.py 1.8KB
    ││││││││├─GetKeywords.py 1.9KB
    ││││││││├─OperationData.py 4KB
    ││││││││├─SendMethod.py 1.6KB
    ││││││││├─__init__.py 78byte
    ││││││王琳/
    │││││││├─Case
    │││││││├─Config
    │││││││├─Interface
    │││││││├─README.en.md 990byte
    │││││││├─README.md 1.3KB
    │││││││├─Utils
    │││││││Case/
    ││││││││├─conftest.py 1.2KB
    ││││││││├─test_01_member.py 2.2KB
    ││││││││├─test_02_address.py 3.1KB
    ││││││││├─test_03_cart.py 4.6KB
    ││││││││├─test_04_coupon.py 1.4KB
    ││││││││├─test_05_order.py 4.6KB
    │││││││Config/
    ││││││││├─TestUrl.py 207byte
    ││││││││├─__init__.py 187byte
    ││││││││├─__pycache__
    ││││││││├─db.ini 115byte
    ││││││││__pycache__/
    │││││││││├─TestUrl.cpython-37.pyc 280byte
    │││││││││├─__init__.cpython-37.pyc 248byte
    │││││││Interface/
    ││││││││├─AddressInterface.py 2.8KB
    ││││││││├─CartInterface.py 4.2KB
    ││││││││├─CouponInterface.py 1.5KB
    ││││││││├─MemberInterface.py 3.9KB
    ││││││││├─OrderInterface.py 2.5KB
    │││││││Utils/
    ││││││││├─Cfg.py 399byte
    ││││││││├─DataBase.py 1.7KB
    ││││││││├─GetKeyWords.py 2KB
    ││││││││├─OperationData.py 1.2KB
    ││││││││├─SendMethod.py 1.9KB
    ││││││││├─__init__.py 187byte
    ││││││││├─__pycache__
    ││││││││__pycache__/
    │││││││││├─Cfg.cpython-37.pyc 596byte
    │││││││││├─GetKeyWords.cpython-37.pyc 1.6KB
    │││││││││├─SendMethod.cpython-37.pyc 1.2KB
    │││││││││├─__init__.cpython-37.pyc 247byte
    ││││││陈艳秋/
    │││││││├─.gitignore 233byte
    │││││││├─Case
    │││││││├─Config
    │││││││├─Interface
    │││││││├─README.en.md 990byte
    │││││││├─README.md 1.3KB
    │││││││├─Utils
    │││││││├─pytest.ini 116byte
    │││││││Case/
    ││││││││├─__init__.py 76byte
    ││││││││├─conftest.py 1.4KB
    ││││││││├─test_01_generate_order.py 2.9KB
    ││││││││├─test_02_member.py 2.1KB
    ││││││││├─test_03_cart.py 5.1KB
    ││││││││├─test_04_address.py 3.3KB
    ││││││││├─test_05_coupon.py 1.5KB
    ││││││││├─test_06_order.py 4.4KB
    │││││││Config/
    ││││││││├─TestUrl.py 207byte
    ││││││││├─__init__.py 187byte
    ││││││││├─__pycache__
    ││││││││├─db.ini 115byte
    ││││││││__pycache__/
    │││││││││├─TestUrl.cpython-37.pyc 361byte
    │││││││││├─__init__.cpython-37.pyc 284byte
    │││││││Interface/
    ││││││││├─AddressInterface.py 2.6KB
    ││││││││├─CartInterface.py 4.5KB
    ││││││││├─CouponInterface.py 1.4KB
    ││││││││├─MemberInterface.py 3.7KB
    ││││││││├─OrderInterface.py 2.7KB
    ││││││││├─__init__.py 76byte
    │││││││Utils/
    ││││││││├─Cfg.py 399byte
    ││││││││├─DataBase.py 1.7KB
    ││││││││├─GetKeyWords.py 2KB
    ││││││││├─OperationData.py 1.2KB
    ││││││││├─SendMethod.py 1.9KB
    ││││││││├─__init__.py 187byte
    ││││││││├─__pycache__
    ││││││││__pycache__/
    │││││││││├─Cfg.cpython-37.pyc 596byte
    │││││││││├─GetKeyWords.cpython-37.pyc 1.7KB
    │││││││││├─SendMethod.cpython-37.pyc 1.3KB
    │││││││││├─__init__.cpython-37.pyc 283byte
    ││││││韦欢/
    │││││││├─.gitignore 131byte
    │││││││├─Case
    │││││││├─Config
    │││││││├─InterFace
    │││││││├─README.en.md 990byte
    │││││││├─README.md 1.3KB
    │││││││├─Utils
    │││││││Case/
    ││││││││├─__init__.py 98byte
    ││││││││├─conftest.py 1.1KB
    ││││││││├─test_01_generate_order.py 2.9KB
    ││││││││├─test_02_login_member.py 1.2KB
    ││││││││├─test_03_address_add.py 1.8KB
    │││││││Config/
    ││││││││├─TestUrl.py 207byte
    ││││││││├─__init__.py 187byte
    ││││││││├─__pycache__
    ││││││││├─db.ini 115byte
    ││││││││__pycache__/
    │││││││││├─TestUrl.cpython-37.pyc 276byte
    │││││││││├─__init__.cpython-37.pyc 199byte
    │││││││InterFace/
    ││││││││├─AddressInterface.py 2.5KB
    ││││││││├─CartInterface.py 4.1KB
    ││││││││├─CouponInterface.py 1.5KB
    ││││││││├─MemberInterface.py 3.2KB
    ││││││││├─OrderInterface.py 2.7KB
    ││││││││├─__init__.py 98byte
    ││││││││├─__pycache__
    ││││││││__pycache__/
    │││││││││├─CartInterface.cpython-37.pyc 2.7KB
    │││││││││├─MemberInterface.cpython-37.pyc 2.9KB
    │││││││││├─OrderInterface.cpython-37.pyc 2.4KB
    │││││││││├─__init__.cpython-37.pyc 235byte
    │││││││Utils/
    ││││││││├─Cfg.py 399byte
    ││││││││├─DataBase.py 1.7KB
    ││││││││├─GetKeyWords.py 2KB
    ││││││││├─OperationData.py 1.2KB
    ││││││││├─SendMethod.py 1.9KB
    ││││││││├─__init__.py 187byte
    ││││││││├─__pycache__
    ││││││││__pycache__/
    │││││││││├─Cfg.cpython-37.pyc 596byte
    │││││││││├─GetKeyWords.cpython-37.pyc 1.6KB
    │││││││││├─SendMethod.cpython-37.pyc 1.2KB
    │││││││││├─__init__.cpython-37.pyc 198byte
    │││││第三组/
    ││││││├─api-testing-group-3
    ││││││├─傅御
    ││││││├─周科
    ││││││├─杨鑫
    ││││││├─高晓凤
    ││││││api-testing-group-3/
    │││││││├─Config
    │││││││├─Interface
    │││││││├─README.en.md 1001byte
    │││││││├─README.md 1.3KB
    │││││││├─Utils
    │││││││Config/
    ││││││││├─Tset_url.py 179byte
    ││││││││├─db.ini 115byte
    │││││││Interface/
    ││││││││├─AddressInterface.py 1.1KB
    ││││││││├─CartInterface.py 3.9KB
    ││││││││├─CouponInterface.py 796byte
    ││││││││├─MemberInterface.py 2.4KB
    ││││││││├─OrderInterface.py 1.1KB
    │││││││Utils/
    ││││││││├─Cfg.py 401byte
    ││││││││├─GetKeyWords.py 949byte
    ││││││││├─GetMysqlData.py 1.8KB
    ││││││││├─OperationData.py 1.3KB
    ││││││││├─SendMothod.py 1.3KB
    ││││││傅御/
    │││││││├─InterfaceFrame
    │││││││├─README.en.md 1001byte
    │││││││├─README.md 1.3KB
    │││││││InterfaceFrame/
    ││││││││├─Case
    ││││││││├─Config
    ││││││││├─Data
    ││││││││├─Interface
    ││││││││├─Utils
    ││││││││├─pytest.ini 150byte
    ││││││││Case/
    │││││││││├─__init__.py 96byte
    │││││││││├─conftest.py 1.1KB
    │││││││││├─test_01_generate_order.py 2.9KB
    │││││││││├─test_02_register_login.py 1.7KB
    │││││││││├─test_03_generate_cart.py 4KB
    │││││││││├─test_04_generate_address.py 2.3KB
    ││││││││Config/
    │││││││││├─TestUrl.py 307byte
    │││││││││├─__init__.py 96byte
    │││││││││├─db.ini 115byte
    ││││││││Data/
    │││││││││├─__init__.py 96byte
    ││││││││Interface/
    │││││││││├─AddressInterface.py 2.1KB
    │││││││││├─CartInterface.py 3.3KB
    │││││││││├─CouponInterface.py 1.4KB
    │││││││││├─MemberInterfaca.py 3.5KB
    │││││││││├─OrderInterface.py 2.5KB
    │││││││││├─__init__.py 96byte
    ││││││││Utils/
    │││││││││├─Cfg.py 344byte
    │││││││││├─GetKeywords.py 653byte
    │││││││││├─GetMysqlData.py 1.8KB
    │││││││││├─OperationData.py 1.3KB
    │││││││││├─SendMethod.py 1.9KB
    │││││││││├─__init__.py 96byte
    ││││││杨鑫/
    │││││││├─Case
    │││││││├─Config
    │││││││├─Data
    │││││││├─Interface
    │││││││├─README.en.md 1001byte
    │││││││├─README.md 1.3KB
    │││││││├─Report
    │││││││├─Utils
    │││││││Case/
    ││││││││├─__init__.py 96byte
    ││││││││├─conftest.py 3KB
    ││││││││├─test_01_generate_order.py 3.1KB
    ││││││││├─test_02_address.py 2.5KB
    ││││││││├─test_03_member.py 1.5KB
    ││││││││├─test_04_cart.py 5.3KB
    ││││││││├─test_05_coupon.py 1.2KB
    ││││││││├─test_06_order.py 3.6KB
    │││││││Config/
    ││││││││├─TestUrl.py 172byte
    ││││││││├─__init__.py 96byte
    ││││││││├─__pycache__
    ││││││││├─db.ini 121byte
    ││││││││__pycache__/
    │││││││││├─TestUrl.cpython-37.pyc 301byte
    │││││││││├─__init__.cpython-37.pyc 175byte
    │││││││Data/
    ││││││││├─__init__.py 96byte
    │││││││Interface/
    ││││││││├─AddressInterface.py 2.6KB
    ││││││││├─CartInterface.py 3.5KB
    ││││││││├─CouponInterface.py 1.5KB
    ││││││││├─MemberInterface.py 3KB
    ││││││││├─OrderInterface.py 2.5KB
    ││││││││├─__init__.py 96byte
    ││││││││├─__pycache__
    ││││││││__pycache__/
    │││││││││├─EventInterface.cpython-37.pyc 1.1KB
    │││││││││├─MemberInterface.cpython-37.pyc 3.1KB
    │││││││││├─__init__.cpython-37.pyc 178byte
    │││││││Report/
    ││││││││├─__init__.py 96byte
    │││││││Utils/
    ││││││││├─Cfg.py 401byte
    ││││││││├─GetKeyWords.py 949byte
    ││││││││├─GetMysqlData.py 1.8KB
    ││││││││├─OperationData.py 1.3KB
    ││││││││├─SendMothod.py 1.3KB
    ││││││││├─__init__.py
    ││││││││├─__pycache__
    ││││││││__pycache__/
    │││││││││├─Cfg.cpython-37.pyc 584byte
    │││││││││├─GetKeyWords.cpython-37.pyc 1.1KB
    │││││││││├─OperationData.cpython-37.pyc 1.5KB
    │││││││││├─SendMothod.cpython-37.pyc 1.2KB
    │││││││││├─__init__.cpython-37.pyc 179byte
    ││││││高晓凤/
    │││││││├─.gitignore 121byte
    │││││││├─Case
    │││││││├─Config
    │││││││├─Interface
    │││││││├─README.en.md 1001byte
    │││││││├─README.md 1.3KB
    │││││││├─Report
    │││││││├─Utils
    │││││││├─pytest.ini 120byte
    │││││││Case/
    ││││││││├─conftest.py 1.4KB
    ││││││││├─test_01_generate_order.py 2.7KB
    ││││││││├─test_02_login_registration.py 2.4KB
    ││││││││├─test_03_address.py 3.3KB
    ││││││││├─test_04_cart.py 5.5KB
    ││││││││├─test_05_order.py 2.7KB
    ││││││││├─test_06_coupon.py 987byte
    │││││││Config/
    ││││││││├─GetUserInfo.py 112byte
    ││││││││├─TestUrl.py 261byte
    ││││││││├─__init__.py
    ││││││││├─__pycache__
    ││││││││├─db.ini 148byte
    ││││││││__pycache__/
    │││││││││├─TestUrl.cpython-37.pyc 473byte
    │││││││││├─__init__.cpython-37.pyc 201byte
    │││││││Interface/
    ││││││││├─AddressInterface.py 2.3KB
    ││││││││├─CartInterface.py 5.2KB
    ││││││││├─Couponsface.py 1.3KB
    ││││││││├─MemberInterface.py 4KB
    ││││││││├─OrdersInterface.py 2.7KB
    ││││││││├─__init__.py
    ││││││││├─__pycache__
    ││││││││__pycache__/
    │││││││││├─AddressInterface.cpython-37.pyc 2.3KB
    │││││││││├─CartInterface.cpython-37.pyc 3.4KB
    │││││││││├─Couponsface.cpython-37.pyc 1.5KB
    │││││││││├─MemberInterface.cpython-37.pyc 3.3KB
    │││││││││├─OrdersInterface.cpython-37.pyc 2.4KB
    │││││││││├─__init__.cpython-37.pyc 204byte
    │││││││Report/
    ││││││││├─__init__.py
    │││││││Utils/
    ││││││││├─Cfg.py 401byte
    ││││││││├─GetKeyWords.py 949byte
    ││││││││├─GetMysqlData.py 1.8KB
    ││││││││├─OperationData.py 1.3KB
    ││││││││├─SendMothod.py 1.3KB
    ││││││││├─__init__.py
    ││││││││├─__pycache__
    ││││││││__pycache__/
    │││││││││├─Cfg.cpython-37.pyc 563byte
    │││││││││├─GetKeyWords.cpython-37.pyc 1KB
    │││││││││├─GetMysqlData.cpython-37.pyc 1.9KB
    │││││││││├─OperationData.cpython-37.pyc 1.5KB
    │││││││││├─SendMothod.cpython-37.pyc 1.2KB
    │││││││││├─__init__.cpython-37.pyc 200byte
    │││││第二组/
    ││││││├─mall-system
    ││││││├─游婷
    ││││││mall-system/
    │││││││├─Case
    │││││││├─Config
    │││││││├─Data
    │││││││├─Interface
    │││││││├─README.en.md 853byte
    │││││││├─README.md 943byte
    │││││││Case/
    ││││││││├─__init__.py 117byte
    ││││││││├─conftest.py 1.1KB
    ││││││││├─test_00Login_Register.py 1.8KB
    ││││││││├─test_01Project_Process.py 2.3KB
    ││││││││├─test_02Cart.py 5.4KB
    ││││││││├─test_03Address.py 2.7KB
    ││││││││├─test_04Couponld.py 1.1KB
    ││││││││├─test_05Order.py 1.9KB
    │││││││Config/
    ││││││││├─__init__.py 117byte
    ││││││││├─db.ini 103byte
    ││││││││├─url.py 244byte
    │││││││Data/
    ││││││││├─__init__.py 117byte
    │││││││Interface/
    ││││││││├─Address.py 3.3KB
    ││││││││├─Cart.py 5.5KB
    ││││││││├─CouponId.py 1.6KB
    ││││││││├─LoginRegister.py 3.2KB
    ││││││││├─LoginRegister1
    ││││││││├─Order.py 3.1KB
    ││││││││├─__init__.py 117byte
    ││││││││LoginRegister1/
    │││││││││├─GetAuthCode.py 741byte
    │││││││││├─Login.py 1002byte
    │││││││││├─Register.py 2.1KB
    │││││││││├─__init__.py 117byte
    │││││││││├─__pycache__
    │││││││││__pycache__/
    ││││││││││├─__init__.cpython-37.pyc 201byte
    ││││││游婷/
    │││││││├─Case
    │││││││├─Config
    │││││││├─Data
    │││││││├─Interface
    │││││││├─README.en.md 853byte
    │││││││├─README.md 943byte
    │││││││Case/
    ││││││││├─__init__.py 117byte
    ││││││││├─conftest.py 1.1KB
    ││││││││├─test_00Login_Register.py 1.8KB
    ││││││││├─test_01Project_Process.py 2.3KB
    ││││││││├─test_02Cart.py 5.4KB
    ││││││││├─test_03Address.py 2.7KB
    ││││││││├─test_04Couponld.py 1.1KB
    ││││││││├─test_05Order.py 1.9KB
    │││││││Config/
    ││││││││├─__init__.py 117byte
    ││││││││├─db.ini 103byte
    ││││││││├─url.py 244byte
    │││││││Data/
    ││││││││├─__init__.py 117byte
    │││││││Interface/
    ││││││││├─Address.py 3.3KB
    ││││││││├─Cart.py 5.5KB
    ││││││││├─CouponId.py 1.6KB
    ││││││││├─LoginRegister.py 3.2KB
    ││││││││├─LoginRegister1
    ││││││││├─Order.py 3.1KB
    ││││││││├─__init__.py 117byte
    ││││││││LoginRegister1/
    │││││││││├─GetAuthCode.py 741byte
    │││││││││├─Login.py 1002byte
    │││││││││├─Register.py 2.1KB
    │││││││││├─__init__.py 117byte
    │││││││││├─__pycache__
    │││││││││__pycache__/
    ││││││││││├─__init__.cpython-37.pyc 201byte
    │││││第四组/
    ││││││├─mall
    ││││││├─夏菲
    ││││││├─李敏
    ││││││├─谢清
    ││││││├─韦振东
    ││││││mall/
    │││││││├─.gitignore 121byte
    │││││││├─Case
    │││││││├─Config
    │││││││├─Data
    │││││││├─Interface
    │││││││├─README.en.md 875byte
    │││││││├─README.md 965byte
    │││││││├─Utils
    │││││││├─pytest.ini 133byte
    │││││││Case/
    ││││││││├─__init__.py 103byte
    ││││││││├─conftest.py 1.3KB
    ││││││││├─test_01_generate_order.py 3.2KB
    ││││││││├─test_02_cart_multi.py 6.6KB
    ││││││││├─test_03_member_manage.py 3.5KB
    ││││││││├─test_04_coupon_manage.py 1.4KB
    ││││││││├─test_05_address_manage.py 4.1KB
    ││││││││├─test_06_order_manage.py 6.1KB
    │││││││Config/
    ││││││││├─TestUrl.py 83byte
    ││││││││├─__init__.py 103byte
    ││││││││├─db.ini 115byte
    │││││││Data/
    ││││││││├─__init__.py 103byte
    │││││││Interface/
    ││││││││├─AddressInterface.py 2.6KB
    ││││││││├─CartInterface.py 4.5KB
    ││││││││├─CouponInterface.py 1.6KB
    ││││││││├─MemberInterface.py 3.5KB
    ││││││││├─OrderInterface.py 2.6KB
    ││││││││├─__init__.py 103byte
    │││││││Utils/
    ││││││││├─Cfg.py 399byte
    ││││││││├─Database.py 3.5KB
    ││││││││├─GetKeywords.py 1.9KB
    ││││││││├─OperationData.py 3.5KB
    ││││││││├─SendMethod.py 2.5KB
    ││││││││├─__init__.py 96byte
    ││││││夏菲/
    │││││││├─Case
    │││││││├─Config
    │││││││├─Data
    │││││││├─Interface
    │││││││├─README.en.md 875byte
    │││││││├─README.md 965byte
    │││││││├─Utils
    │││││││├─pytest.ini 136byte
    │││││││Case/
    ││││││││├─__init__.py 187byte
    ││││││││├─conftest.py 2.7KB
    ││││││││├─test_01_generate_order.py 2.9KB
    ││││││││├─test_02_address.py 2.7KB
    ││││││││├─test_03_cart.py 4.6KB
    ││││││││├─test_04_coupon.py 1.1KB
    ││││││││├─test_05_member.py 1.9KB
    ││││││││├─test_06_order.py 3.4KB
    │││││││Config/
    ││││││││├─TestUrl.py 207byte
    ││││││││├─__init__.py 187byte
    ││││││││├─db.ini 115byte
    │││││││Data/
    ││││││││├─__init__.py 187byte
    │││││││Interface/
    ││││││││├─Addressinterface.py 2.7KB
    ││││││││├─CartInterface.py 4.8KB
    ││││││││├─Couponinterface.py 1.5KB
    ││││││││├─Memberinterface.py 3.2KB
    ││││││││├─Orderinterface.py 2.7KB
    ││││││││├─__init__.py 187byte
    │││││││Utils/
    ││││││││├─Cfg.py 399byte
    ││││││││├─Database.py 3.5KB
    ││││││││├─GetKeywords.py 1.9KB
    ││││││││├─OperationData.py 3.5KB
    ││││││││├─SendMethod.py 2.5KB
    ││││││││├─__init__.py 96byte
    ││││││李敏/
    │││││││├─Case
    │││││││├─Config
    │││││││├─Data
    │││││││├─Interface
    │││││││├─README.en.md 875byte
    │││││││├─README.md 965byte
    │││││││├─Report
    │││││││├─Utils
    │││││││├─pytest.ini 136byte
    │││││││Case/
    ││││││││├─__init__.py 96byte
    ││││││││├─conftest.py 1.2KB
    ││││││││├─test_01_main_process.py 2.7KB
    ││││││││├─test_02_cart.py 5.8KB
    ││││││││├─test_03_address.py 4KB
    ││││││││├─test_04_coupon.py 1.3KB
    ││││││││├─test_05_order2.py 3.8KB
    ││││││││├─test_06_user_login.py 2.3KB
    │││││││Config/
    ││││││││├─TestUrl.py 73byte
    ││││││││├─__init__.py 96byte
    ││││││││├─db.ini 115byte
    │││││││Data/
    ││││││││├─__init__.py 96byte
    │││││││Interface/
    ││││││││├─AddCartInterface.py 4.1KB
    ││││││││├─AddressIterface.py 2.5KB
    ││││││││├─ConfirmOrderInterface.py 2.6KB
    ││││││││├─CouponInterface.py 1.4KB
    ││││││││├─LoginIterface.py 3.3KB
    ││││││││├─RegisterInterface.py 1.4KB
    ││││││││├─__init__.py 96byte
    │││││││Report/
    ││││││││├─__init__.py 96byte
    │││││││Utils/
    ││││││││├─Cfg.py 399byte
    ││││││││├─Database.py 3.6KB
    ││││││││├─GetKeywords.py 1.9KB
    ││││││││├─OperationData.py 3.5KB
    ││││││││├─SendMethod.py 2.5KB
    ││││││││├─__init__.py 96byte
    ││││││谢清/
    │││││││├─.gitignore 121byte
    │││││││├─Case
    │││││││├─Config
    │││││││├─Data
    │││││││├─Interface
    │││││││├─README.en.md 875byte
    │││││││├─README.md 965byte
    │││││││├─Utils
    │││││││├─pytest.ini 133byte
    │││││││Case/
    ││││││││├─__init__.py 103byte
    ││││││││├─conftest.py 1.3KB
    ││││││││├─test_01_generate_order.py 3.2KB
    ││││││││├─test_02_cart_multi.py 6.6KB
    ││││││││├─test_03_member_manage.py 3.5KB
    ││││││││├─test_04_coupon_manage.py 1.4KB
    ││││││││├─test_05_address_manage.py 4.1KB
    ││││││││├─test_06_order_manage.py 6.1KB
    │││││││Config/
    ││││││││├─TestUrl.py 83byte
    ││││││││├─__init__.py 103byte
    ││││││││├─db.ini 115byte
    │││││││Data/
    ││││││││├─__init__.py 103byte
    │││││││Interface/
    ││││││││├─AddressInterface.py 2.6KB
    ││││││││├─CartInterface.py 4.5KB
    ││││││││├─CouponInterface.py 1.6KB
    ││││││││├─MemberInterface.py 3.5KB
    ││││││││├─OrderInterface.py 2.6KB
    ││││││││├─__init__.py 103byte
    │││││││Utils/
    ││││││││├─Cfg.py 399byte
    ││││││││├─Database.py 3.5KB
    ││││││││├─GetKeywords.py 1.9KB
    ││││││││├─OperationData.py 3.5KB
    ││││││││├─SendMethod.py 2.5KB
    ││││││││├─__init__.py 96byte
    ││││││韦振东/
    │││││││├─Case
    │││││││├─Config
    │││││││├─Data
    │││││││├─Interface
    │││││││├─README.en.md 875byte
    │││││││├─README.md 965byte
    │││││││├─Report
    │││││││├─Utils
    │││││││├─pytest.ini 115byte
    │││││││Case/
    ││││││││├─Test_01_generate_order.py 3.1KB
    ││││││││├─Test_02_cart.py 5.3KB
    ││││││││├─Test_03_order.py 4.1KB
    ││││││││├─Test_04_member.py 1.5KB
    ││││││││├─Test_05_coupon.py 836byte
    ││││││││├─Test_06_address.py 2.9KB
    ││││││││├─__init__.py 103byte
    ││││││││├─conftest.py 1.4KB
    │││││││Config/
    ││││││││├─TestUrl.py 177byte
    ││││││││├─__init__.py 103byte
    ││││││││├─db.ini 115byte
    │││││││Data/
    ││││││││├─__init__.py 103byte
    │││││││Interface/
    ││││││││├─AddressInterface.py 2.9KB
    ││││││││├─CartInterface.py 4.2KB
    ││││││││├─CouponInterface.py 1.6KB
    ││││││││├─MenberInterface.py 3.7KB
    ││││││││├─OrderInterface.py 2.7KB
    ││││││││├─__init__.py 103byte
    │││││││Report/
    ││││││││├─__init__.py 103byte
    │││││││Utils/
    ││││││││├─Cfg.py 399byte
    ││││││││├─Database.py 1.8KB
    ││││││││├─GetKeywords.py 1.9KB
    ││││││││├─OperationData.py 3.5KB
    ││││││││├─SendMethod.py 1.8KB
    │││doc/
    ││││├─接口自动化测试_补充.doc 579.9KB
    ││││├─项目.md 743byte
    ││││├─项目信息.txt 399byte
    ││││├─项目总结.md 1.8KB
    │││resource/
    ││││├─foo.json 1.5KB
    ││││├─moco-runner-0.12.0-standalone.jar 6.7MB
    │││video/
    ││││├─01邮件通知.mp4 42.9MB
    ││││├─02钉钉消息通知.mp4 30.9MB
    ││││├─03接口签名.mp4 64.4MB
    ││││├─04非对称加密.mp4 46.8MB
    ││││├─05mock.mp4 25.2MB
    ││││├─06postman导入swagger文档.mp4 17.9MB
    ││││├─07项目总结.mp4 41.9MB
    ││2023-06-26接口自动化项目day07/
    │││├─录音分析.txt 3.3KB
    │││├─项目答辩.xlsx 9.7KB
    2-Linux/
    │├─Linux常用命令全集.CHM 363.5KB
    │├─XShell远程连接文档.pdf 388.3KB
    │├─Xftp-7.0.0155p.exe 38.9MB
    │├─Xshell 7 Protable.zip 26.8MB
    │├─Xshell-7.0.0157p.exe 46.9MB
    │├─xshell&xftp[]{}.pdf 1.9MB
    │├─打印脚本代码示例.txt 68byte
    │├─某小说前八章.txt 97.9KB
    3-MySQL入门/
    │├─mysql-5.7.31-winx64.zip 305.9MB
    │├─navicat163_premium_cs_x64.exe 96.7MB
    4-web项目实操/
    │├─FiddlerSetup.exe 6.3MB
    │├─TPshop后台发货流程.jpg 75.1KB
    │├─TPshop测试报告.xlsx 9.5KB
    │├─TPshop测试点分析.xmind 179.7KB
    │├─TPshop测试计划.xmind 95.3KB
    │├─TPshop需求.pdf 3.8MB
    │├─TPshop需求说明书.pdf 2.5MB
    │├─TPshop需求说明书(更新后台会员管理).pdf 2.5MB
    │├─tpshop商城_组织架构图.png 30.7KB
    │├─tpshop虚拟机-开箱即用
    │├─web手工项目〔〕.pdf 3.6MB
    │├─前台下单流程图.jpg 71.4KB
    │├─备用1.xls 22.5KB
    │├─备用2.xlsx 17.8KB
    │├─错误的思维导图文档
    │tpshop虚拟机-开箱即用/
    ││├─CentOS 7 64 位-1.scoreboard 8KB
    ││├─CentOS 7 64 位.scoreboard 8KB
    ││├─tpshop-开箱即用-disk1.vmdk 10GB
    ││├─tpshop-开箱即用-file1.iso 4.4GB
    ││├─tpshop-开箱即用-file2.nvram 8.5KB
    ││├─tpshop-开箱即用.vmsd
    ││├─tpshop-开箱即用.vmx 3.2KB
    ││├─tpshop-开箱即用.vmxf 382byte
    ││├─vmware-0.log 216.2KB
    ││├─vmware.log 165.5KB
    │错误的思维导图文档/
    ││├─web手工项目-1.xmind 74.5KB
    5-接口测试+Jmeter/
    │├─FiddlerSetup.5.0.20242.10753-latest.exe 4.4MB
    │├─抓包工具fiddler.pdf 3.3MB
    │├─接口测试配套工具和笔记
    │接口测试配套工具和笔记/
    ││├─ToBeCalled.java 969byte
    ││├─apache-jmeter-5.1.1.zip 62.4MB
    ││├─api-1.0.jar 27.8MB
    ││├─api_test.sql 1.2KB
    ││├─jmeter环境搭建
    ││├─mysql-connector-java-5.1.35-bin.jar 946KB
    ││├─xx接口测试点分析及其与测试用例的关系.xmind 107.4KB
    ││├─关联.jmx 19.3KB
    ││├─基于业务流的多接口测试.jmx 26.8KB
    ││├─基于模块的多接口测试.jmx 30.1KB
    ││├─小结.jmx 24.4KB
    ││├─接口功能测试数据.csv 304byte
    ││├─接口功能测试数据_优化_增加断言.csv 326byte
    ││├─接口测试环境搭建api1.0+apiserver+禅道一键安装
    ││├─接口用例模板.xlsx 19KB
    ││├─练习.jmx 39.1KB
    ││jmeter环境搭建/
    │││├─apache-jmeter-5.1.1.zip 62.7MB
    │││├─apache-jmeter-5.6.3.zip 86.4MB
    │││├─jdk-8u211-windows-x64.exe 215.3MB
    │││├─jmeter-plugins-manager-1.3.jar 872KB
    ││接口测试环境搭建api1.0+apiserver+禅道一键安装/
    │││├─service_api-3.scoreboard 8KB
    │││├─service_api-4.scoreboard 8KB
    │││├─service_api-5.scoreboard 8KB
    │││├─service_api-s001.vmdk 151.1MB
    │││├─service_api-s002.vmdk 997.6MB
    │││├─service_api-s003.vmdk 1GB
    │││├─service_api-s004.vmdk 671.4MB
    │││├─service_api-s005.vmdk 512KB
    │││├─service_api-s006.vmdk 1GB
    │││├─service_api-s007.vmdk 192KB
    │││├─service_api.nvram 8.5KB
    │││├─service_api.scoreboard 8KB
    │││├─service_api.vmdk 772byte
    │││├─service_api.vmsd
    │││├─service_api.vmx 2.8KB
    │││├─service_api.vmxf 266byte
    │││├─vmware-0.log 219.8KB
    │││├─vmware-1.log 161.2KB
    │││├─vmware-2.log 170.4KB
    │││├─vmware.log 782.3KB
    6-Jmeter性能测试入门/
    │├─wms性能测试配套工具脚本
    │wms性能测试配套工具脚本/
    ││├─单接口性能测试.jmx 45.2KB
    ││├─并发条件下新增角色bug.jmx 16.1KB
    ││├─混合业务性能测试.jmx 24.9KB
    7-Python基础入门/
    │├─Git-2.40.0-64-bit.exe 51.3MB
    │├─first_python.py 21byte
    │├─pycharm-community-20.exe 348.7MB
    │├─pycharm-community-2024.1.exe 455.5MB
    │├─python-3.12.2-amd64.exe 25.4MB
    │├─python-3.8.6-amd64
    │├─python-3.8.6-amd64.exe 26.8MB
    │├─python-3.8.6rc1-amd64.exe 26.8MB
    │├─李老师版本废弃python_base_code.zip 27.3MB
    │├─杰哥版本python_code.zip 31.6KB
    │python-3.8.6-amd64/
    ││├─0 84KB
    ││├─u0 601KB
    ││├─u1 11.7KB
    ││├─u2 10.2KB
    ││├─u3 56.5KB
    ││├─u4 95.5KB
    8-接口自动化/
    │├─1.jpg 6.9KB
    │├─allure-2.30.0.zip 25.3MB
    │├─api-1.0.jar 27.8MB
    │├─代码.zip 488.8KB
    │├─测试用例完整版.xlsx 14.9KB
    9-UI自动化/
    │├─00 web自动化-总体介绍.xmind 29.5KB
    │├─AutoTest_TPshop(181~203).zip 174.1KB
    │├─DDT_1_v7(141~150).zip 10.4KB
    │├─DDT_2_cal(151~157).zip 8.1KB
    │├─JSON(139~140).zip 6.1KB
    │├─Logging(161~172).zip 46.6KB
    │├─PO(113~132).zip 34.4KB
    │├─pagetest.zip 1.3MB
    │├─pytest(97~107).zip 14.7KB
    │├─selenium_api(10~92).zip 382.2KB
    │├─web的ui自动化源码
    │├─web自动化-1-web自动化入门.xmind 191.2KB
    │├─web自动化-1-web自动化入门笔记.md 3.4KB
    │├─web自动化-2-selenium-api.xmind 34.7KB
    │├─web自动化-2-selenium-api笔记.md 48.9KB
    │├─web自动化-3-pytest框架.xmind 205KB
    │├─web自动化-3-pytest框架笔记.md 6.7KB
    │├─web自动化-4-PO模式.xmind 49.4KB
    │├─web自动化-4-PO模式笔记.md 16.3KB
    │├─web自动化-5-数据驱动.xmind 210.2KB
    │├─web自动化-5-数据驱动笔记.md 7.2KB
    │├─web自动化-6-日志收集.xmind 222.5KB
    │├─web自动化-6-日志收集笔记.md 7.5KB
    │├─web自动化-7-项目实战.xmind 195.5KB
    │├─web自动化-7-项目实战笔记.md 5KB
    │web的ui自动化源码/
    ││├─webzdh
    ││webzdh/
    │││├─AutoTest_TPshop(181~203)
    │││├─DDT_1_v7
    │││├─DDT_2_cal
    │││├─JSON(139~140)
    │││├─Logging(161~172)
    │││├─PO(113~132)
    │││├─pytest(97~107)
    │││├─selenium_api(10~92)
    │││AutoTest_TPshop(181~203)/
    ││││├─.idea
    ││││├─base
    ││││├─config
    ││││├─data
    ││││├─log
    ││││├─page
    ││││├─pytest.ini 148byte
    ││││├─report
    ││││├─screenshot
    ││││├─scripts
    ││││├─utils
    ││││.idea/
    │││││├─AutoTest_TPshop.iml 464byte
    │││││├─encodings.xml 205byte
    │││││├─misc.xml 294byte
    │││││├─modules.xml 289byte
    │││││├─workspace.xml 16.7KB
    ││││base/
    │││││├─__init__.py
    │││││├─base_action.py 859byte
    │││││├─base_analyze.py 273byte
    ││││config/
    │││││├─__init__.py
    │││││├─logging_config.py 938byte
    ││││data/
    │││││├─__init__.py
    │││││├─login_data.json 138byte
    ││││log/
    │││││├─__init__.py
    │││││├─tpshop.log 40KB
    ││││page/
    │││││├─__init__.py
    │││││├─cart_page.py 305byte
    │││││├─goods_detail_page.py 661byte
    │││││├─goods_search_page.py 385byte
    │││││├─home_page.py 490byte
    │││││├─index_page.py 1KB
    │││││├─login_page.py 857byte
    │││││├─order_page.py 304byte
    │││││├─order_pay_page.py 701byte
    ││││report/
    │││││├─__init__.py
    │││││├─assets
    │││││├─report.html 12.9KB
    │││││assets/
    ││││││├─style.css 2.7KB
    ││││screenshot/
    │││││├─__init__.py
    │││││├─tpshop.png 157.2KB
    ││││scripts/
    │││││├─__init__.py
    │││││├─test_1login.py 1.2KB
    │││││├─test_cart.py 1.1KB
    │││││├─test_order.py 2.1KB
    ││││utils/
    │││││├─__init__.py 68byte
    │││││├─driver_utils.py 959byte
    │││DDT_1_v7/
    ││││├─.idea
    ││││├─base
    ││││├─data
    ││││├─page
    ││││├─pytest.ini 122byte
    ││││├─scripts
    ││││├─utils
    ││││.idea/
    │││││├─DDT_1_v7.iml 464byte
    │││││├─encodings.xml 205byte
    │││││├─misc.xml 294byte
    │││││├─modules.xml 275byte
    │││││├─workspace.xml 10.9KB
    ││││base/
    │││││├─__init__.py
    │││││├─base_action_132.py 513byte
    │││││├─base_analyze_149.py 273byte
    ││││data/
    │││││├─__init__.py
    │││││├─login_data.json 302byte
    ││││page/
    │││││├─__init__.py
    │││││├─login_page_132.py 1.5KB
    ││││scripts/
    │││││├─__init__.py
    │││││├─test_login[145].py 2.9KB
    │││││├─test_login[148].py 1.5KB
    │││││├─test_login[150].py 995byte
    ││││utils/
    │││││├─__init__.py
    │││││├─driver_utils_121.py 568byte
    │││DDT_2_cal/
    ││││├─.idea
    ││││├─base
    ││││├─data
    ││││├─page
    ││││├─pytest.ini 122byte
    ││││├─scripts
    ││││├─utils
    ││││.idea/
    │││││├─DDT_2_cal.iml 464byte
    │││││├─encodings.xml 205byte
    │││││├─misc.xml 294byte
    │││││├─modules.xml 277byte
    │││││├─workspace.xml 11KB
    ││││base/
    │││││├─__init__.py
    │││││├─base_action.py 698byte
    │││││├─base_analyze.py 273byte
    ││││data/
    │││││├─__init__.py
    │││││├─cal_data.json 220byte
    ││││page/
    │││││├─__init__.py
    │││││├─cal_page.py 765byte
    ││││scripts/
    │││││├─__init__.py
    │││││├─test_add.py 1.1KB
    ││││utils/
    │││││├─__init__.py
    │││││├─driver_utils.py 568byte
    │││JSON(139~140)/
    ││││├─.idea
    ││││├─data.json 315byte
    ││││├─data2.json 264byte
    ││││├─data3.json 252byte
    ││││├─demo[139].py 486byte
    ││││├─demo[140].py 472byte
    ││││.idea/
    │││││├─JSON.iml 464byte
    │││││├─encodings.xml 205byte
    │││││├─misc.xml 294byte
    │││││├─modules.xml 267byte
    │││││├─workspace.xml 10.6KB
    │││Logging(161~172)/
    ││││├─.idea
    ││││├─172.log 867.1KB
    ││││├─172.log.2020-03-05_13-09-27 1.3MB
    ││││├─172.log.2020-03-05_13-09-28 1.3MB
    ││││├─172.log.2020-03-05_13-09-29 1.3MB
    ││││├─abc.log 433byte
    ││││├─日志基本用法_基本使用[161].py 243byte
    ││││├─日志基本用法_日志输出到文件[164].py 417byte
    ││││├─日志基本用法_设置日志格式[163].py 397byte
    ││││├─日志基本用法_设置日志级别[162].py 286byte
    ││││├─日志高级用法[172].py 911byte
    ││││.idea/
    │││││├─Logging.iml 464byte
    │││││├─encodings.xml 205byte
    │││││├─misc.xml 294byte
    │││││├─modules.xml 273byte
    │││││├─workspace.xml 17.6KB
    │││PO(113~132)/
    ││││├─.idea
    ││││├─v1
    ││││├─v2
    ││││├─v3
    ││││├─v4
    ││││├─v5
    ││││├─v6
    ││││.idea/
    │││││├─PO.iml 464byte
    │││││├─encodings.xml 205byte
    │││││├─misc.xml 294byte
    │││││├─modules.xml 263byte
    │││││├─workspace.xml 18.9KB
    ││││v1/
    │││││├─__init__.py
    │││││├─test_login_account_not_exist[113].py 827byte
    │││││├─test_login_password_error[114].py 817byte
    ││││v2/
    │││││├─__init__.py
    │││││├─test_login[117].py 2KB
    ││││v3/
    │││││├─__init__.py
    │││││├─driver_utils_121.py 568byte
    │││││├─test_login[121].py 1.9KB
    ││││v4/
    │││││├─__init__.py
    │││││├─page
    │││││├─pytest.ini 122byte
    │││││├─scripts
    │││││├─utils
    │││││page/
    ││││││├─__init__.py
    ││││││├─__pycache__
    ││││││├─login_page_128.py 960byte
    ││││││__pycache__/
    │││││││├─__init__.cpython-37.pyc 139byte
    │││││││├─login_page_128.cpython-37.pyc 1.5KB
    │││││scripts/
    ││││││├─__init__.py
    ││││││├─__pycache__
    ││││││├─test_login[128].py 2.1KB
    ││││││__pycache__/
    │││││││├─__init__.cpython-37.pyc 142byte
    │││││utils/
    ││││││├─__init__.py
    ││││││├─__pycache__
    ││││││├─driver_utils_121.py 568byte
    ││││││__pycache__/
    │││││││├─__init__.cpython-37.pyc 140byte
    │││││││├─driver_utils_121.cpython-37.pyc 781byte
    ││││v5/
    │││││├─__init__.py
    │││││├─page
    │││││├─pytest.ini 122byte
    │││││├─scripts
    │││││├─utils
    │││││page/
    ││││││├─__init__.py
    ││││││├─__pycache__
    ││││││├─login_page_130.py 2KB
    ││││││__pycache__/
    │││││││├─__init__.cpython-37.pyc 139byte
    │││││││├─login_page_130.cpython-37.pyc 1.8KB
    │││││scripts/
    ││││││├─__init__.py
    ││││││├─__pycache__
    ││││││├─test_login[128].py 2.1KB
    ││││││__pycache__/
    │││││││├─__init__.cpython-37.pyc 142byte
    │││││││├─test_login[128].cpython-37-PYTEST.pyc 2.5KB
    │││││utils/
    ││││││├─__init__.py
    ││││││├─__pycache__
    ││││││├─driver_utils_121.py 568byte
    ││││││__pycache__/
    │││││││├─__init__.cpython-37.pyc 140byte
    │││││││├─driver_utils_121.cpython-37.pyc 781byte
    ││││v6/
    │││││├─__init__.py
    │││││├─base
    │││││├─page
    │││││├─pytest.ini 122byte
    │││││├─scripts
    │││││├─utils
    │││││base/
    ││││││├─__init__.py
    ││││││├─__pycache__
    ││││││├─base_action_132.py 513byte
    ││││││__pycache__/
    │││││││├─__init__.cpython-37.pyc 139byte
    │││││││├─base_action_132.cpython-37.pyc 1.1KB
    │││││page/
    ││││││├─__init__.py
    ││││││├─__pycache__
    ││││││├─login_page_132.py 1.5KB
    ││││││__pycache__/
    │││││││├─__init__.cpython-37.pyc 139byte
    │││││││├─login_page_132.cpython-37.pyc 1.5KB
    │││││scripts/
    ││││││├─__init__.py
    ││││││├─__pycache__
    ││││││├─test_login[128].py 2.1KB
    ││││││__pycache__/
    │││││││├─__init__.cpython-37.pyc 142byte
    │││││││├─test_login[128].cpython-37-PYTEST.pyc 2.5KB
    │││││utils/
    ││││││├─__init__.py
    ││││││├─__pycache__
    ││││││├─driver_utils_121.py 568byte
    ││││││__pycache__/
    │││││││├─__init__.cpython-37.pyc 140byte
    │││││││├─driver_utils_121.cpython-37.pyc 781byte
    │││pytest(97~107)/
    ││││├─.idea
    ││││├─pytest.ini 148byte
    ││││├─report
    ││││├─scripts
    ││││├─test_setup和teardown[101].py 475byte
    ││││├─test_单一参数[105].py 398byte
    ││││├─test_多个参数[106].py 425byte
    ││││├─test_推荐用法[107].py 808byte
    ││││├─test_断言[100].py 452byte
    ││││├─test_运行方式[97].py 276byte
    ││││.idea/
    │││││├─encodings.xml 205byte
    │││││├─misc.xml 294byte
    │││││├─modules.xml 271byte
    │││││├─pytest.iml 464byte
    │││││├─workspace.xml 12.4KB
    ││││report/
    │││││├─assets
    │││││├─report.html 11.1KB
    │││││assets/
    ││││││├─style.css 2.7KB
    ││││scripts/
    │││││├─__init__.py
    │││││├─__pycache__
    │││││├─test_demo1[102].py 120byte
    │││││├─test_demo2[102].py 120byte
    │││││__pycache__/
    ││││││├─__init__.cpython-37.pyc 143byte
    ││││││├─test_demo1[102].cpython-37-PYTEST.pyc 666byte
    ││││││├─test_demo2[102].cpython-37-PYTEST.pyc 666byte
    │││selenium_api(10~92)/
    ││││├─.idea
    ││││├─10 入门实例实现.py 352byte
    ││││├─18 id定位.py 868byte
    ││││├─19 name定位.py 414byte
    ││││├─20 class_name定位.py 508byte
    ││││├─21 tag_name定位.py 357byte
    ││││├─22 link_text定位.py 361byte
    ││││├─23 partial_link_text定位.py 509byte
    ││││├─25 定位一组元素.py 382byte
    ││││├─30 XPath定位-路径.py 462byte
    ││││├─31 XPath定位-利用元素属性.py 571byte
    ││││├─32 XPath定位-属性与逻辑结合.py 398byte
    ││││├─33 XPath定位-层级与属性结合.py 386byte
    ││││├─34 XPath定位-扩展.py 460byte
    ││││├─37 CSS定位-id选择器.py 363byte
    ││││├─38 CSS定位-class选择器.py 380byte
    ││││├─39 CSS定位-元素选择器.py 344byte
    ││││├─40 CSS定位-属性选择器.py 377byte
    ││││├─41 CSS定位-层级选择器.py 460byte
    ││││├─42 CSS定位-CSS扩展.py 600byte
    ││││├─45 元素定位总结-另一种写法.py 445byte
    ││││├─48 元素操作.py 1KB
    ││││├─50 浏览器操作.py 1.3KB
    ││││├─52 获取元素信息.py 885byte
    ││││├─56 鼠标操作-右击.py 482byte
    ││││├─57 鼠标操作-双击.py 486byte
    ││││├─58 鼠标操作-悬停.py 427byte
    ││││├─59 鼠标操作-拖动.py 436byte
    ││││├─62 键盘操作.py 688byte
    ││││├─65 元素等待-隐式等待.py 593byte
    ││││├─66 元素等待-显式等待.py 582byte
    ││││├─68 下拉框-方式1.py 604byte
    ││││├─70 下拉框-方式2.py 601byte
    ││││├─72 弹出框-错误示范.py 607byte
    ││││├─74 弹出框-正确示范.py 529byte
    ││││├─76 滚动条-案例.py 471byte
    ││││├─78 frame切换-错误代码.py 630byte
    ││││├─80 frame切换-正确代码.py 1KB
    ││││├─83 多窗口切换.py 1KB
    ││││├─85 窗口截图.py 766byte
    ││││├─92 操作cookie跳过百度登录.py 760byte
    ││││├─png
    ││││.idea/
    │││││├─encodings.xml 205byte
    │││││├─misc.xml 294byte
    │││││├─modules.xml 283byte
    │││││├─selenium_api.iml 464byte
    │││││├─workspace.xml 44.6KB
    ││││png/
    │││││├─123.png 91.2KB
    │││││├─123_20200229161934.png 91.2KB
    │││││├─__init__.py
    │││││├─test_20200229162024.png 91.3KB
    │││││├─test_20200229162038.png 91.3KB

    猜你喜欢

    猜你在找

    1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
    2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
    3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
    4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
    5. 如有链接无法下载、失效或广告,请联系管理员处理!
    6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
    7. 如遇到加密压缩包,默认解压密码为"www.xitnds.com"或“xitnds.com”,如遇到无法解压的请联系管理员!
    学IT那点事 » 北梦测软件测试入门课程资料包【非视频】

    常见问题FAQ

    免费下载或者VIP会员专享资源能否直接商用?
    本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
    提示下载完但解压或打开不了?
    最常见的情况是下载不完整: 可对比下载完压缩包的与网盘上的容量,若小于网盘提示的容量则是这个原因。这是浏览器下载的bug,建议用百度网盘软件或迅雷下载。若排除这种情况,可在对应资源底部留言,或 联络我们.。
    找不到素材资源介绍文章里的示例图片?
    本站所有资源会进行单独保存,如果下载链接失效可以联系管理员进行修正!!下载的文件打不开,也可百度或联系管理员,比如有些视频格式需要特殊的播放器待
    学IT那点事下载免费吗?
    本站原则上是免费下载的,但不是无条件开放,本站以分享币下进行分享下载,可以免费获取分享币,获取途径:1.每天进行签到;2.推广本站资源;3.发布高质量相关资源;4.当然你也可以直接扫码赞助购买,也可以一次性加入永久VIP!
    • 2025-02-07Hi,初次和大家见面了,请多关照!

    售后服务:

    • 下载须知 1、站内收录的教程与资源均是不加密的资源,收集整理进行分享,其版权归原作者及其网站所有。
      2、本站仅为资源分享的平台,站内资源仅供学习研究所用,不得用于商业用途,不对所造成的后果负责。
      3、本站教程仅供本站会员学习参考,不得传播及用于其他用途,学习完后请在24小时内自行删除。
      付费须知 1、本站原则上不收取任何费用,所有资源可免费获取,积分获取途径
      2、如自扫码等支付,纯属自愿支持本站建设,所有费用都用于网站服务器/域名/CDS加速等用途。
      3、开通终身VIP者,本站保证开通之日起五年以上(使用不到五年者,无条件按时间比例退还)。
      4、如本站如经营受阻,会提前告知用户,并退还剩于款项(已经用于本站建设的费用扣除后按比例退还)。
      售后服务时间 周一至周日(法定节假日除外) 9:00-23:00
      免责声明 本站所提供的资源(教程/项目/资料)等资源仅供学习交流,若使用商业用途,请购买正版授权,否则产生的一切后果将由下载用户自行承担,有部分资源为网上收集或仿制而来,若模板侵犯了您的合法权益,请来信通知我们(Email: 56928691@qq.com),我们会及时删除,给您带来的不便,我们深表歉意!

    Hi, 如果你对这资料有疑问,可以跟我联系哦!

    联系管理员
    • 14183会员总数(位)
    • 38171资源总数(个)
    • 0本周发布(个)
    • 0 今日发布(个)
    • 2075稳定运行(天)

    提供最优质的资源集合

    赞助本站svip 了解详情
  • © 2008 - 2023 Theme by - 学IT那点事 . All rights reserved 湘ICP备2022013417号

  • XML地图 | 站长导航
    升级SVIP尊享更多特权立即升级