diff options
Address book name save fix (#6945)
* Fix address book name saving and ens input errors on good inputs on unsupported networks
* Add initial e2e test for address book send flow.
* No longer need to click recipient row in e2e tests
* Click write button in address book e2e test on seed confirm screen
* Use correct seed phrase and private key in address-book.spec tests
Diffstat (limited to 'test/e2e/metamask-ui.spec.js')
-rw-r--r-- | test/e2e/metamask-ui.spec.js | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/test/e2e/metamask-ui.spec.js b/test/e2e/metamask-ui.spec.js index ef1ec6d47..8d0942dc6 100644 --- a/test/e2e/metamask-ui.spec.js +++ b/test/e2e/metamask-ui.spec.js @@ -325,10 +325,6 @@ describe('MetaMask', function () { const inputAddress = await findElement(driver, By.css('input[placeholder="Search, public address (0x), or ENS"]')) await inputAddress.sendKeys('0x2f318C334780961FB129D2a6c30D0763d9a5C970') - const recipientRow = await findElement(driver, By.css('.send__select-recipient-wrapper__group-item')) - await recipientRow.click() - await delay(regularDelayMs) - const inputAmount = await findElement(driver, By.css('.unit-input__input')) await inputAmount.sendKeys('1000') @@ -395,10 +391,6 @@ describe('MetaMask', function () { const inputAddress = await findElement(driver, By.css('input[placeholder="Search, public address (0x), or ENS"]')) await inputAddress.sendKeys('0x2f318C334780961FB129D2a6c30D0763d9a5C970') - const recipientRow = await findElement(driver, By.css('.send__select-recipient-wrapper__group-item')) - await recipientRow.click() - await delay(regularDelayMs) - const inputAmount = await findElement(driver, By.css('.unit-input__input')) await inputAmount.sendKeys('1') @@ -442,10 +434,6 @@ describe('MetaMask', function () { const inputAddress = await findElement(driver, By.css('input[placeholder="Search, public address (0x), or ENS"]')) await inputAddress.sendKeys('0x2f318C334780961FB129D2a6c30D0763d9a5C970') - const recipientRow = await findElement(driver, By.css('.send__select-recipient-wrapper__group-item')) - await recipientRow.click() - await delay(regularDelayMs) - const inputAmount = await findElement(driver, By.css('.unit-input__input')) await inputAmount.sendKeys('1') @@ -1050,10 +1038,6 @@ describe('MetaMask', function () { const inputAddress = await findElement(driver, By.css('input[placeholder="Search, public address (0x), or ENS"]')) await inputAddress.sendKeys('0x2f318C334780961FB129D2a6c30D0763d9a5C970') - const recipientRow = await findElement(driver, By.css('.send__select-recipient-wrapper__group-item')) - await recipientRow.click() - await delay(regularDelayMs) - const inputAmount = await findElement(driver, By.css('.unit-input__input')) await inputAmount.sendKeys('1') |