导入pytest
将uiautomator2导入为u2
d=u2.connect((
def test_preport((:
d.press(“home”)
def test_procedure((:
d(text=“Settings”).click()
d.screenshot(“Settings.png”)
d(text=“Bluetooth”).click()
d.screenshot(“Bluetooth.png”)
def-test_expectedResult((:
assert d(text=“Bluetooth”).exists
以以下方式运行上述脚本:py.test--html=report.html--self-contained html Bluetooth settings.py
我是python的新手当我用pytest运行上述脚本并生成HTML报告时,我无法在HTML报告中看到屏幕截图图像,请求提供解决方案
默认情况下,pytest html只捕获并附加失败测试用例的屏幕截图,如果您希望它也捕获通过的测试用例。你可以参考下面的线程这里