From 053a67c0238ce69ab2c4fb4dbeec70bf2cf074bf Mon Sep 17 00:00:00 2001 From: mmorozov Date: Tue, 25 Mar 2025 13:41:06 +0800 Subject: [PATCH] Increase time for arkvm startup due to verification enable Issue: https://gitee.com/openharmony/arkcompiler_runtime_core/issues/IBRPO4?from=project-issue Signed-off-by: mmorozov --- cases/smoke/basic/screenshot32/new_script/testcases/test_hap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cases/smoke/basic/screenshot32/new_script/testcases/test_hap.py b/cases/smoke/basic/screenshot32/new_script/testcases/test_hap.py index 2ea4be2..5d47f2f 100644 --- a/cases/smoke/basic/screenshot32/new_script/testcases/test_hap.py +++ b/cases/smoke/basic/screenshot32/new_script/testcases/test_hap.py @@ -28,7 +28,7 @@ class Test: time.sleep(1) logging.info('start app') device.start_ability(self.bundle_name, self.ability_name) - time.sleep(2) + time.sleep(5) main_page = device.save_snapshot_to_local('{}_hap.jpeg'.format(device.sn)) crop_picture(picture=main_page, x1=0, y1=72, x2=160, y2=162) stand_pic = os.path.join(device.resource_path, 'hap.jpeg') -- Gitee