14 lines
422 B
Python
14 lines
422 B
Python
from uiautomator2 import Device
|
|
|
|
|
|
def click_search_icon(d: Device):
|
|
selector = d.xpath('//*[@resource-id="com.ss.android.ugc.aweme:id/ybv"]/android.widget.Button['
|
|
'1]/android.widget.FrameLayout[1]')
|
|
if selector.exists:
|
|
selector.click()
|
|
|
|
|
|
def input_search_text(d: Device, text: str):
|
|
(d
|
|
.xpath('//*[@resource-id="com.ss.android.ugc.aweme:id/et_search_kw"]').set_text(text))
|