8 lines
207 B
Python
8 lines
207 B
Python
|
from uiautomator2 import Device
|
||
|
|
||
|
|
||
|
def click_search(d: Device):
|
||
|
(d
|
||
|
.xpath('//*[@resource-id="com.ss.android.ugc.aweme:id/ybv"]/android.widget.Button[1]/android.widget.FrameLayout[1]')
|
||
|
.click())
|