mirror of
https://mirror.skon.top/github.com/openatx/uiautomator2
synced 2026-04-23 10:21:43 +08:00
14 lines
152 B
Python
14 lines
152 B
Python
# coding: utf-8
|
|
#
|
|
|
|
import uiautomator2 as u2
|
|
|
|
|
|
def test_simple():
|
|
d = u2.connect()
|
|
print(d.info)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
test_simple()
|