1. 首页
  2. 数据库
  3. 其它
  4. playwright pytest:Pytest插件可使用Playwright编写端到端浏览器测试 源码

playwright pytest:Pytest插件可使用Playwright编写端到端浏览器测试 源码

上传者: 2021-04-27 05:26:17上传 ZIP文件 21KB 热度 115次
适用于Playwright的Pytest插件 使用和为您的Web应用编写端到端测试。 支持所有现代浏览器,包括Chromium,W​​ebKit和Firefox。 支持无头和有头的执行。 提供浏览器原语以测试功能的内置固定装置。 用法 pip install pytest-playwright 使用page装置编写基本测试。 查看。 def test_example_is_working ( page ): page . goto ( "https://example.com" ) assert page . inner_text ( 'h1' ) == 'Example Domain' page . click ( "text=More information" ) 要运行测试,请使用pytest CLI。 # Run tests (Chromium
用户评论