From 0478400db954d6b79f9860a8f597bec78ba947fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Cutzach?= Date: Tue, 27 Aug 2024 16:50:59 +0200 Subject: [PATCH] fix: to small time value for waiting page reload --- test/nbrowser/DocTypeConversion.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/nbrowser/DocTypeConversion.ts b/test/nbrowser/DocTypeConversion.ts index 8ff925f2024..8b0ef6adbbf 100644 --- a/test/nbrowser/DocTypeConversion.ts +++ b/test/nbrowser/DocTypeConversion.ts @@ -58,7 +58,7 @@ describe("Document Type Conversion", function () { await modalConfirm.click(); // await for the page reload - await driver.sleep(200); + await driver.sleep(1000); // check that the displayedLabel is now equal to convert destination assert.equal(await displayedLabel.element().getText(), to);