test_simple_example.py 152 B

12345678910111213
  1. # coding: utf-8
  2. #
  3. import uiautomator2 as u2
  4. def test_simple():
  5. d = u2.connect()
  6. print(d.info)
  7. if __name__ == "__main__":
  8. test_simple()