X Tutup
Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.27 KB

File metadata and controls

42 lines (31 loc) · 1.27 KB

Basic Usage

Wrap a pair of brackets after poco instance to select UI objects. The following example simply shows how to select a button and perform a click.

img/basic_btn_start.png

# coding=utf-8

from poco.drivers.unity3d import UnityPoco

poco = UnityPoco()
poco('btn_start').click()

See also:

X Tutup