We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d5d461 commit fc1c4e8Copy full SHA for fc1c4e8
1 file changed
module/handler/info_handler.py
@@ -531,10 +531,16 @@ def wait_until_manjuu_disappear(self):
531
"""
532
Wait until manjuu loading disappear.
533
534
+ timer = Timer(1.5, count=3).start()
535
while 1:
536
self.device.screenshot()
- if not self.manjuu_count():
537
- break
+ if self.manjuu_count():
538
+ self.device.stuck_record_clear()
539
+ timer.reset()
540
+ else:
541
+ if timer.reached():
542
+ logger.info(f'Manjuu disappeared')
543
+ break
544
545
def handle_manjuu(self):
546
0 commit comments