From cd68e966ab2c0b05150fe42a58e819ebc05ecfc9 Mon Sep 17 00:00:00 2001 From: Thomas Nordquist Date: Tue, 18 Jun 2019 10:27:58 +0200 Subject: [PATCH] Fix test text input --- src/spec/util/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spec/util/index.ts b/src/spec/util/index.ts index d5d55db..c0c74df 100644 --- a/src/spec/util/index.ts +++ b/src/spec/util/index.ts @@ -42,7 +42,7 @@ export async function writeTextToInput(name: string, text: string, browser: Brow await clickOn(input, browser, 1) wait && (await sleep(500)) input.clearValue() - wait && (await sleep(300)) + wait && (await sleep(500)) await writeText(text, browser) }