playwright pytest:Pytest插件可使用Playwright编写端到端浏览器测试 源码
适用于Playwright的Pytest插件 使用和为您的Web应用编写端到端测试。 支持所有现代浏览器,包括Chromium,WebKit和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
用户评论