archi: removed OCR welcome check

This commit is contained in:
paumr 2024-05-06 22:23:29 +02:00
parent 9f1a2da3e9
commit 8027f83d32

View File

@ -24,7 +24,9 @@ import ./make-test-python.nix ({ lib, ... }: {
machine.wait_for_window("Archi")
# wait till main UI is open
machine.wait_for_text("Welcome to Archi")
# since OCR seems to be buggy wait_for_text was replaced by sleep, issue: #302965
# machine.wait_for_text("Welcome to Archi")
machine.sleep(20)
machine.screenshot("welcome-screen")
'';