当前位置:   article > 正文

Python中AssertionError异常并且程序将继续执行下去_python selenium assertequal 异常后继续执行

python selenium assertequal 异常后继续执行
# 可以使用assert关键字来进行断言。当条件不成立时,会引发AssertionError异常并且程序将继续执行下去
        try:
            # 发送POST请求并获取返回结果
            response = requests.request('post', login_url, data=payload, headers=headers)
            status_code = response.json()['code']
            # print(status_code)
            extract_value = {
                'login_token': response.json()['data']['token']['token'],
                'login_Authorization': response.json()['data']['token']['principal']
            }
            # print(extract_value)
            YamlUtil().write_extract_yaml(extract_value)
            assert response.status_code == 300
            print('status_code', status_code)
        except AssertionError as e:
            print('错误状态码', str(e))
        finally:
            print('无论是否异常都继续执行')
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/645771
推荐阅读
相关标签
  

闽ICP备14008679号