from ui_automation_framework.utils import CoreConfig from waiting import wait as _wait def wait(predicate, timeout=int(CoreConfig.SELENIUM_TIMEOUT), sleep=0.01, waiting_for=None, exceptions=()): return _wait(predicate, timeout_seconds=timeout, sleep_seconds=sleep, expected_exceptions=exceptions, waiting_for=waiting_for)