diff --git a/test/e2e/tests/add-custom-network.spec.js b/test/e2e/tests/add-custom-network.spec.js index f93cccc1e6cc..b43a8a3aed8e 100644 --- a/test/e2e/tests/add-custom-network.spec.js +++ b/test/e2e/tests/add-custom-network.spec.js @@ -3,7 +3,7 @@ const FixtureBuilder = require('../fixture-builder'); const { convertToHexValue, withFixtures } = require('../helpers'); describe('Custom network', function () { - const chainID = 42161; + const chainID = '42161'; const networkURL = 'https://arbitrum-mainnet.infura.io'; const networkNAME = 'Arbitrum One'; const currencySYMBOL = 'ETH'; diff --git a/test/e2e/tests/custom-rpc-history.spec.js b/test/e2e/tests/custom-rpc-history.spec.js index f0580c69da82..34a0abc01928 100644 --- a/test/e2e/tests/custom-rpc-history.spec.js +++ b/test/e2e/tests/custom-rpc-history.spec.js @@ -290,6 +290,11 @@ describe('Stores custom RPC history', function () { networkListItems[networkListItems.length - 1]; await lastNetworkListItem.click(); + await driver.waitForSelector({ + css: '.form-field .form-field__input:nth-of-type(1)', + value: 'http://127.0.0.1:8545/2', + }); + await driver.clickElement('.btn-danger'); // wait for confirm delete modal to be visible