From bb4de95f76cb12059057b10f0a239e82ced2b5ee Mon Sep 17 00:00:00 2001 From: Dan Date: Tue, 5 Jun 2018 22:16:03 -0230 Subject: Fix e2e beta tests to account for add-token updates and actual behaviour of tab openings on installation. --- test/e2e/beta/from-import-beta-ui.spec.js | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'test/e2e/beta/from-import-beta-ui.spec.js') diff --git a/test/e2e/beta/from-import-beta-ui.spec.js b/test/e2e/beta/from-import-beta-ui.spec.js index e07d4a99e..7fec5fa09 100644 --- a/test/e2e/beta/from-import-beta-ui.spec.js +++ b/test/e2e/beta/from-import-beta-ui.spec.js @@ -94,11 +94,9 @@ describe('Using MetaMask with an existing account', function () { await delay(regularDelayMs) // Close all other tabs - const [oldUi, infoPage, newUi] = await driver.getAllWindowHandles() + const [oldUi, newUi] = await driver.getAllWindowHandles() await driver.switchTo().window(oldUi) await driver.close() - await driver.switchTo().window(infoPage) - await driver.close() await driver.switchTo().window(newUi) await delay(regularDelayMs) @@ -306,11 +304,11 @@ describe('Using MetaMask with an existing account', function () { }) it('picks an existing token', async () => { - const [tokenSearch] = await driver.findElements(By.css('input.add-token__input')) + const [tokenSearch] = await driver.findElements(By.css('#search-tokens')) await tokenSearch.sendKeys('BAT') await delay(regularDelayMs) - const [token] = await driver.findElements(By.xpath("//div[contains(text(), 'BAT')]")) + const [token] = await driver.findElements(By.xpath("//span[contains(text(), 'BAT')]")) await token.click() await delay(regularDelayMs) @@ -343,7 +341,7 @@ describe('Using MetaMask with an existing account', function () { tokenName, tokenDecimal, tokenSymbol, - ] = await driver.findElements(By.css('input')) + ] = await driver.findElements(By.css('.form-control')) await totalSupply.sendKeys('100') await tokenName.sendKeys('Test') @@ -383,7 +381,7 @@ describe('Using MetaMask with an existing account', function () { await addCustomToken.click() await delay(regularDelayMs) - const [newTokenAddress] = await driver.findElements(By.css('.add-token__add-custom-form input')) + const [newTokenAddress] = await driver.findElements(By.css('#custom-address')) await newTokenAddress.sendKeys(tokenAddress) await delay(regularDelayMs) -- cgit