conftest.py 341 B

12345678910111213141516171819
  1. # coding: utf-8
  2. # author: codeskyblue
  3. import pytest
  4. import uiautomator2 as u2
  5. @pytest.fixture(scope="function")
  6. def d():
  7. _d = u2.connect_usb()
  8. _d.press("home")
  9. yield _d
  10. @pytest.fixture(scope="function")
  11. def app(d: u2.Device):
  12. d.app_start("com.example.u2testdemo", stop=True)
  13. d(text="Addition").wait()
  14. yield d