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,