status-desktop/test/ui-test/testSuites/suite_status/shared/scripts/debug_helpers.py

15 lines
335 B
Python
Raw Normal View History

# encoding: UTF-8
import squish
import object
import names
import test
def debugWaitForObject(objRealName: dict, timeoutMSec: int = 1000):
return squish.waitForObject(objRealName, timeoutMSec)
def type_text(obj, text: str):
squish.type(obj, text)
def find_object(objRealName: dict):
obj = squish.findObject(objRealName)