import pytest
import uiautomator2 as u2
d = u2.connect ()
def test_precondition ():
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 -hibited- html Bluetooth settings.py
Я новичок в python Когда я запускаю вышеуказанный скрипт с pytest и генерирую отчет HTML, я не могу видеть снимок экрана в отчете HTML с просьбой предоставить раствор