From 57ba4b4a3e900d297613f056cf2e93e91261bf2b Mon Sep 17 00:00:00 2001 From: Jakub Mucha Date: Thu, 28 Oct 2021 00:26:31 +0200 Subject: [PATCH] fix: confirmtransaction Signed-off-by: Jakub Mucha --- commands/metamask.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/metamask.js b/commands/metamask.js index 8e19d009a..e4e9c7ad1 100644 --- a/commands/metamask.js +++ b/commands/metamask.js @@ -381,8 +381,8 @@ module.exports = { ); const newGasFee = isKovanTestnet ? '1' - : (Number(currentGasFee) + 10).toString(); - await puppeteer.waitClearAndType( + : (Number(currentGasFee) + 10).toString().replace('.', ','); + await puppeteer.waitAndSetValue( newGasFee, confirmPageElements.gasFeeInput, notificationPage,