#Robot/TestedFixed/Exist/WaitAppear

dev-linux
Ivan Maslov 5 years ago
parent f8973b70da
commit 190023fa93

@ -235,7 +235,7 @@ def UIOSelector_Get_UIO (inSpecificationList,inElement=None,inFlagRaiseException
def UIOSelector_Exist_Bool (inSpecificationList):
lResult=False
#Получить родительский объект если на вход ничего не поступило
lResultList=UIOSelector_Get_UIOList(inSpecificationList,inElement,False)
lResultList=UIOSelector_Get_UIOList(inSpecificationList,None,False)
if len(lResultList)>0:
lResult=True
return lResult
@ -252,7 +252,7 @@ def UIOSelectorsSecs_WaitAppear_List (inSpecificationListList,inWaitSecs,inFlagW
lSecsDone = 0
lResultList = None
#Цикл проверки
while lResultFlag == False and lSecsSleep<inWaitSecs:
while lResultFlag == False and lSecsDone<inWaitSecs:
lResultList=[]
#Итерация проверки
lIndex = 0
@ -273,7 +273,7 @@ def UIOSelectorsSecs_WaitAppear_List (inSpecificationListList,inWaitSecs,inFlagW
#Если флаг не изменился - увеличить время и уснуть
if lResultFlag == False:
lSecsDone=lSecsDone+lSecsSleep
sleep(lSecsSleep)
time.sleep(lSecsSleep)
return lResultList
#################################################################################################
#Wait for UIO is appear (at least one of them or all at the same time)

Loading…
Cancel
Save