在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → pytest api自动化框架

pytest api自动化框架

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:2.41M
  • 下载次数:15
  • 浏览次数:104
  • 发布时间:2023-07-19
  • 实例类别:Python语言基础
  • 发 布 人:lane06
  • 文件格式:.rar
  • 所需积分:2
 相关标签: test 自动化 API ES 自动

实例介绍

【实例简介】pytest api自动化框架

【实例截图】

from clipboard

【核心代码】

.
├── pytest api自动化框架_api.rar
└── robo-Mobile-API-Test
    ├── README.md
    ├── config
    │   └── env.conf
    ├── helpers
    │   ├── __init__.py
    │   ├── __pycache__
    │   │   ├── __init__.cpython-36.pyc
    │   │   ├── checkers.cpython-36.pyc
    │   │   ├── config.cpython-36.pyc
    │   │   ├── database.cpython-36.pyc
    │   │   ├── env.cpython-36.pyc
    │   │   └── logger.cpython-36.pyc
    │   ├── checkers.py
    │   ├── config.py
    │   ├── database.py
    │   ├── env.py
    │   └── logger.py
    ├── logs
    │   ├── 2020-06-05.log
    │   ├── 2020-06-06.log
    │   ├── 2020-06-07.log
    │   ├── 2020-06-14.log
    │   ├── 2020-06-20.log
    │   ├── 2020-07-07.log
    │   ├── 2020-07-08.log
    │   ├── 2020-07-29.log
    │   ├── 2020-08-10.log
    │   ├── 2020-08-11.log
    │   ├── 2020-09-09.log
    │   ├── 2020-10-13.log
    │   ├── 2020-10-20.log
    │   ├── 2020-10-21.log
    │   ├── 2020-10-22.log
    │   ├── 2020-10-23.log
    │   ├── 2020-10-28.log
    │   ├── 2020-11-12.log
    │   ├── 2020-11-17.log
    │   ├── 2020-11-25.log
    │   ├── 2020-11-29.log
    │   ├── 2020-12-06.log
    │   ├── 2020-12-07.log
    │   ├── 2020-12-23.log
    │   ├── 2021-01-05.log
    │   ├── 2021-01-16.log
    │   ├── 2021-01-17.log
    │   ├── 2021-04-23.log
    │   ├── 2021-04-24.log
    │   ├── 2021-04-26.log
    │   ├── 2021-04-28.log
    │   ├── 2021-05-10.log
    │   ├── 2021-05-11.log
    │   ├── 2021-05-14.log
    │   ├── 2021-05-15.log
    │   ├── all_points.py
    │   └── sprint_points.py
    ├── pytest.ini
    ├── requirements.txt
    └── tests
        ├── __init__.py
        ├── __pycache__
        │   └── __init__.cpython-36.pyc
        ├── report
        │   ├── assets
        │   │   └── style.css
        │   └── report.html
        ├── test_F10
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_f10.cpython-36-PYTEST.pyc
        │   └── test_f10.py
        ├── test_a_board
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_a_board.cpython-36-PYTEST.pyc
        │   │   ├── test_a_board.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_little_a_a.cpython-36-PYTEST.pyc
        │   │   ├── test_little_a_a.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_little_a_b.cpython-36-PYTEST.pyc
        │   │   └── test_little_a_b.cpython-36-pytest-6.1.1.pyc
        │   ├── report
        │   │   ├── assets
        │   │   │   └── style.css
        │   │   └── report.html
        │   ├── test_a_board.py
        │   ├── test_little_a_a.py
        │   └── test_little_a_b.py
        ├── test_activity_bull
        │   ├── __init__.py
        │   ├── __pycache__
        │   └── activity_bull.py
        ├── test_ai_report
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_report.cpython-36-PYTEST.pyc
        │   │   └── test_strategy.cpython-36-PYTEST.pyc
        │   ├── report.py
        │   └── strategy.py
        ├── test_ai_stock_monitor
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_bankuai.cpython-36-PYTEST.pyc
        │   │   ├── test_bankuai.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_gegu.cpython-36-PYTEST.pyc
        │   │   └── test_gegu.cpython-36-pytest-6.1.1.pyc
        │   ├── report
        │   │   ├── assets
        │   │   │   └── style.css
        │   │   └── report.html
        │   ├── test_bankuai.py
        │   └── test_gegu.py
        ├── test_basic_data
        │   └── __pycache__
        │       ├── __init__.cpython-36.pyc
        │       └── test_indicdata.cpython-36-PYTEST.pyc
        ├── test_big_v
        │   └── __pycache__
        │       ├── __init__.cpython-36.pyc
        │       └── test_big_v.cpython-36-PYTEST.pyc
        ├── test_box
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_best_increase.cpython-36-pytest-6.1.1.pyc
        │   ├── test_best_increase.py
        │   └── test_box.py
        ├── test_calendar
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_calendar.cpython-36-PYTEST.pyc
        │   └── test_calendar.py
        ├── test_clues
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_clues.cpython-36-PYTEST.pyc
        │   └── test_clues.py
        ├── test_daketang
        │   ├── __init__.py
        │   └── test_daketang.py
        ├── test_data
        │   ├── __init__.py
        │   └── test_data.py
        ├── test_fund
        │   ├── __init__.py
        │   ├── test_fund.py
        │   └── test_fund_returnCurve.py
        ├── test_geguzhenduan
        │   ├── __init__.py
        │   └── test_geguzhenduan.py
        ├── test_gold_announcement
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_annoucement_performance.cpython-36-PYTEST.pyc
        │   │   ├── test_gold_announcement.cpython-36-PYTEST.pyc
        │   │   └── test_origin_annoucement.cpython-36-PYTEST.pyc
        │   ├── test_annoucement_performance.py
        │   ├── test_gold_announcement.py
        │   └── test_origin_annoucement.py
        ├── test_group
        │   ├── __init__.py
        │   └── test_group.py
        ├── test_hangyelundong
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_daily.cpython-36-PYTEST.pyc
        │   │   ├── test_daily.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_prediction.cpython-36-PYTEST.pyc
        │   │   ├── test_prediction.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_record.cpython-36-PYTEST.pyc
        │   │   └── test_record.cpython-36-pytest-6.1.1.pyc
        │   ├── test_daily.py
        │   ├── test_prediction.py
        │   ├── test_prosperity.py
        │   └── test_record.py
        ├── test_home
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_homepage.cpython-36-PYTEST.pyc
        │   │   └── test_message.cpython-36-PYTEST.pyc
        │   ├── test_homepage.py
        │   └── test_message.py
        ├── test_home_feed
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_cattle_configured.cpython-36-PYTEST.pyc
        │   │   ├── test_cattle_operation.cpython-36-PYTEST.pyc
        │   │   ├── test_column_mobile.cpython-36-PYTEST.pyc
        │   │   ├── test_homepage_feed.cpython-36-PYTEST.pyc
        │   │   ├── test_mobile_feed.cpython-36-PYTEST.pyc
        │   │   ├── test_roboStore_goods.cpython-36-PYTEST.pyc
        │   │   ├── test_roboStore_show.cpython-36-PYTEST.pyc
        │   │   ├── test_team.cpython-36-PYTEST.pyc
        │   │   ├── test_tool_info.cpython-36-PYTEST.pyc
        │   │   ├── test_wudi_feed.cpython-36-PYTEST.pyc
        │   │   └── test_yanbaoyouhua.cpython-36-PYTEST.pyc
        │   ├── test_cattle_configured.py
        │   ├── test_cattle_operation.py
        │   ├── test_column_mobile.py
        │   ├── test_homepage_feed.py
        │   ├── test_mobile_feed.py
        │   ├── test_roboStore_goods.py
        │   ├── test_roboStore_show.py
        │   ├── test_team.py
        │   ├── test_tool_info.py
        │   ├── test_wudi_feed.py
        │   └── test_yanbaoyouhua.py
        ├── test_industry
        │   ├── __init__.py
        │   └── test_hangyeyilai.py
        ├── test_level2
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_level2.cpython-36-PYTEST.pyc
        │   └── test_level2.py
        ├── test_luoboStore
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_chenhuijingu.cpython-36-PYTEST.pyc
        │   │   ├── test_fenxishi.cpython-36-PYTEST.pyc
        │   │   ├── test_lihaoxiaoxi.cpython-36-PYTEST.pyc
        │   │   ├── test_luoboStore.cpython-36-PYTEST.pyc
        │   │   ├── test_luoboStore.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_magic_trend.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_pay_product.cpython-36-PYTEST.pyc
        │   │   ├── test_pay_product.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_strategy.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_tuoshuiyanbao.cpython-36-PYTEST.pyc
        │   │   ├── test_waiziliuxiang.cpython-36-PYTEST.pyc
        │   │   └── test_yixianyouzi.cpython-36-PYTEST.pyc
        │   ├── report
        │   │   ├── assets
        │   │   │   └── style.css
        │   │   └── report.html
        │   ├── test_chenhuijingu.py
        │   ├── test_fenxishi.py
        │   ├── test_jigoudiaoyan.py
        │   ├── test_lihaoxiaoxi.py
        │   ├── test_luoboStore.py
        │   ├── test_magic_trend.py
        │   ├── test_pay_product.py
        │   ├── test_strategy.py
        │   ├── test_tuoshuiyanbao.py
        │   ├── test_waiziliuxiang.py
        │   └── test_yixianyouzi.py
        ├── test_magic_trend
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_magic_trend.cpython-36-PYTEST.pyc
        │   └── test_magic_trend.py
        ├── test_market_index
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_HKStock.cpython-36-PYTEST.pyc
        │   │   ├── test_STARMarket.cpython-36-PYTEST.pyc
        │   │   ├── test_chuangyeban.cpython-36-PYTEST.pyc
        │   │   ├── test_hottheme.cpython-36-PYTEST.pyc
        │   │   ├── test_hushen.cpython-36-PYTEST.pyc
        │   │   ├── test_index_adv.cpython-36-PYTEST.pyc
        │   │   ├── test_market_plate.cpython-36-PYTEST.pyc
        │   │   ├── test_moneyFlow.cpython-36-PYTEST.pyc
        │   │   ├── test_new_market_adv.cpython-36-PYTEST.pyc
        │   │   ├── test_shangzheng.cpython-36-PYTEST.pyc
        │   │   ├── test_shangzheng50.cpython-36-PYTEST.pyc
        │   │   ├── test_shenzheng.cpython-36-PYTEST.pyc
        │   │   ├── test_stock_adv.cpython-36-PYTEST.pyc
        │   │   ├── test_theme_plate.cpython-36-PYTEST.pyc
        │   │   ├── test_xiaoAkanpan.cpython-36-PYTEST.pyc
        │   │   └── test_zhongzheng500.cpython-36-PYTEST.pyc
        │   ├── test_HKStock.py
        │   ├── test_STARMarket.py
        │   ├── test_chuangyeban.py
        │   ├── test_hottheme.py
        │   ├── test_hushen.py
        │   ├── test_index_adv.py
        │   ├── test_market_plate.py
        │   ├── test_moneyFlow.py
        │   ├── test_new_market_adv.py
        │   ├── test_shangzheng.py
        │   ├── test_shangzheng50.py
        │   ├── test_shenzheng.py
        │   ├── test_stock_adv.py
        │   ├── test_theme_plate.py
        │   ├── test_xiaoAkanpan.py
        │   └── test_zhongzheng500.py
        ├── test_module_demo
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_sample.cpython-36-PYTEST.pyc
        │   └── test_sample.py
        ├── test_moneyflow
        │   ├── __init__.py
        │   ├── test_dazongjiaoyi.py
        │   ├── test_gangziliuxiang.py
        │   ├── test_longhubang.py
        │   ├── test_northflow.py
        │   ├── test_rongzirongquan.py
        │   ├── test_zijinerqi.py
        │   └── test_zijinliuxiang.py
        ├── test_monitor
        │   ├── __init__.py
        │   └── test_monitor.py
        ├── test_morning_paper1
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── report.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_morning_paper.cpython-36-PYTEST.pyc
        │   │   ├── test_morning_paper.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_wanbao.cpython-36-PYTEST.pyc
        │   │   └── test_wanbao.cpython-36-pytest-6.1.1.pyc
        │   ├── report
        │   │   ├── assets
        │   │   │   └── style.css
        │   │   └── report.html
        │   ├── report.py
        │   ├── test_morning_paper.py
        │   └── test_wanbao.py
        ├── test_news
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_news_commend.cpython-36-PYTEST.pyc
        │   │   ├── test_news_hot.cpython-36-PYTEST.pyc
        │   │   ├── test_news_search.cpython-36-PYTEST.pyc
        │   │   └── test_news_weekly.cpython-36-PYTEST.pyc
        │   ├── test_news_commend.py
        │   ├── test_news_hot.py
        │   ├── test_news_search.py
        │   └── test_news_weekly.py
        ├── test_personal_stock
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_self_hot_stock.cpython-36-PYTEST.pyc
        │   │   ├── test_self_stock_detail_mkt_statistics.cpython-36-PYTEST.pyc
        │   │   ├── test_self_stock_info.cpython-36-PYTEST.pyc
        │   │   ├── test_self_stock_market.cpython-36-PYTEST.pyc
        │   │   └── test_self_stock_morning_count.cpython-36-PYTEST.pyc
        │   ├── test_self_hot_stock.py
        │   ├── test_self_stock_detail_mkt_statistics.py
        │   ├── test_self_stock_info.py
        │   ├── test_self_stock_market.py
        │   └── test_self_stock_morning_count.py
        ├── test_pic_finance_report
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_pic_finance_report_A_detail.cpython-36-PYTEST.pyc
        │   │   ├── test_pic_finance_report_A_detail.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_pic_finance_report_add_comment.cpython-36-PYTEST.pyc
        │   │   ├── test_pic_finance_report_add_comment.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_pic_finance_report_add_stock.cpython-36-PYTEST.pyc
        │   │   ├── test_pic_finance_report_add_stock.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_pic_finance_report_current.cpython-36-PYTEST.pyc
        │   │   ├── test_pic_finance_report_current.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_pic_finance_report_performance.cpython-36-PYTEST.pyc
        │   │   ├── test_pic_finance_report_performance.cpython-36-pytest-6.1.1.pyc
        │   │   ├── test_pic_finance_report_view_comment_list.cpython-36-PYTEST.pyc
        │   │   └── test_pic_finance_report_view_comment_list.cpython-36-pytest-6.1.1.pyc
        │   ├── report
        │   │   ├── assets
        │   │   │   └── style.css
        │   │   └── report.html
        │   ├── test_pic_finance_report_A_detail.py
        │   ├── test_pic_finance_report_add_comment.py
        │   ├── test_pic_finance_report_add_stock.py
        │   ├── test_pic_finance_report_current.py
        │   ├── test_pic_finance_report_performance.py
        │   └── test_pic_finance_report_view_comment_list.py
        ├── test_related_chart
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_relationship_spectrum.cpython-36-PYTEST.pyc
        │   └── test_relationship_spectrum.py
        ├── test_report
        │   ├── __init__.py
        │   └── test_report.py
        ├── test_search
        │   ├── __init__.py
        │   ├── test_search.py
        │   └── test_search_feeds.py
        ├── test_similarK
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_similar_Kline.cpython-36-pytest-6.1.1.pyc
        │   └── test_similar_Kline.py
        ├── test_strategy_store
        │   └── __pycache__
        │       ├── __init__.cpython-36.pyc
        │       └── test_strategy.cpython-36-pytest-6.1.1.pyc
        ├── test_tags
        │   ├── __init__.py
        │   ├── test_faxian.py
        │   └── test_tags.py
        ├── test_total_report
        │   ├── __init__.py
        │   └── original_report.py
        ├── test_trainCamp
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_trainCamp_mobile.cpython-36-pytest-6.1.1.pyc
        │   ├── test_trainCamp_mobile.py
        │   └── test_trainCamp_web.py
        ├── test_tujiekechuang
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   ├── test_tujiekechuang.cpython-36-PYTEST.pyc
        │   │   └── test_tujiekechuang.cpython-36-pytest-6.1.1.pyc
        │   └── test_tujiekechuang.py
        ├── test_waibuxiaoshou
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── __init__.cpython-36.pyc
        │   │   └── test_tiancheng.cpython-36-PYTEST.pyc
        │   └── test_tiancheng.py
        ├── test_wangpai_Report
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── test_derReportTags.cpython-36-PYTEST.pyc
        │   │   ├── test_searchReport.cpython-36-PYTEST.pyc
        │   │   ├── test_targetChgPct.cpython-36-PYTEST.pyc
        │   │   ├── test_tuoshuiyanbao.cpython-36-PYTEST.pyc
        │   │   └── test_yanbaodaguan.cpython-36-PYTEST.pyc
        │   ├── searchCase.xlsx
        │   ├── test_derReportTags.py
        │   ├── test_searchReport.py
        │   ├── test_targetChgPct.py
        │   ├── test_tuoshuiyanbao.py
        │   └── test_yanbaodaguan.py
        ├── test_xiaoAkanpan
        │   ├── __init__.py
        │   ├── __pycache__
        │   │   ├── test_panhou.cpython-36-PYTEST.pyc
        │   │   ├── test_panhou.cpython-36-pytest-6.1.1.pyc
        │   │   └── test_panqian.cpython-36-PYTEST.pyc
        │   ├── report
        │   │   ├── assets
        │   │   │   └── style.css
        │   │   └── report.html
        │   ├── test_panhou.py
        │   └── test_panqian.py
        └── test_youhuiquan
            ├── __init__.py
            ├── __pycache__
            │   ├── __init__.cpython-36.pyc
            │   ├── test_youhuiquan.cpython-36-PYTEST.pyc
            │   └── test_youhuiquan.cpython-36-pytest-6.1.1.pyc
            └── test_youhuiquan.py

97 directories, 371 files


标签: test 自动化 API ES 自动

实例下载地址

pytest api自动化框架

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警