diff options
author | Alexander Tseung <alextsg@gmail.com> | 2018-09-01 07:03:02 +0800 |
---|---|---|
committer | Alexander Tseung <alextsg@gmail.com> | 2018-09-13 10:48:52 +0800 |
commit | c18c0e1c30bd7b2800e66288e21ee724e7314b30 (patch) | |
tree | d77e78da9552f76c28f335e947ebe3d535847a9d /test/e2e/beta/metamask-beta-ui.spec.js | |
parent | c04d9095dd4e5ff38508059d0c1e55eabb7a39e4 (diff) | |
download | tangerine-wallet-browser-c18c0e1c30bd7b2800e66288e21ee724e7314b30.tar tangerine-wallet-browser-c18c0e1c30bd7b2800e66288e21ee724e7314b30.tar.gz tangerine-wallet-browser-c18c0e1c30bd7b2800e66288e21ee724e7314b30.tar.bz2 tangerine-wallet-browser-c18c0e1c30bd7b2800e66288e21ee724e7314b30.tar.lz tangerine-wallet-browser-c18c0e1c30bd7b2800e66288e21ee724e7314b30.tar.xz tangerine-wallet-browser-c18c0e1c30bd7b2800e66288e21ee724e7314b30.tar.zst tangerine-wallet-browser-c18c0e1c30bd7b2800e66288e21ee724e7314b30.zip |
Fix tests. Add className to Identicon ethLogos.
Diffstat (limited to 'test/e2e/beta/metamask-beta-ui.spec.js')
-rw-r--r-- | test/e2e/beta/metamask-beta-ui.spec.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/e2e/beta/metamask-beta-ui.spec.js b/test/e2e/beta/metamask-beta-ui.spec.js index c9f759780..0864ef236 100644 --- a/test/e2e/beta/metamask-beta-ui.spec.js +++ b/test/e2e/beta/metamask-beta-ui.spec.js @@ -408,7 +408,7 @@ describe('MetaMask', function () { assert.equal(transactions.length, 1) if (process.env.SELENIUM_BROWSER !== 'firefox') { - const txValues = await findElement(driver, By.css('.transaction-list-item__amount--secondary')) + const txValues = await findElement(driver, By.css('.transaction-list-item__amount--primary')) await driver.wait(until.elementTextMatches(txValues, /-1\sETH/), 10000) } }) @@ -450,7 +450,7 @@ describe('MetaMask', function () { const transactions = await findElements(driver, By.css('.transaction-list-item')) assert.equal(transactions.length, 2) - const txValues = await findElement(driver, By.css('.transaction-list-item__amount--secondary')) + const txValues = await findElement(driver, By.css('.transaction-list-item__amount--primary')) await driver.wait(until.elementTextMatches(txValues, /-3\sETH/), 10000) }) }) @@ -528,7 +528,7 @@ describe('MetaMask', function () { await delay(largeDelayMs) await findElements(driver, By.css('.transaction-list-item')) - const [txListValue] = await findElements(driver, By.css('.transaction-list-item__amount--secondary')) + const [txListValue] = await findElements(driver, By.css('.transaction-list-item__amount--primary')) await driver.wait(until.elementTextMatches(txListValue, /-4\sETH/), 10000) await txListValue.click() await delay(regularDelayMs) @@ -562,7 +562,7 @@ describe('MetaMask', function () { return confirmedTxes.length === 4 }, 10000) - const txValues = await findElements(driver, By.css('.transaction-list-item__amount--secondary')) + const txValues = await findElements(driver, By.css('.transaction-list-item__amount--primary')) await driver.wait(until.elementTextMatches(txValues[0], /-4\sETH/), 10000) // const txAccounts = await findElements(driver, By.css('.tx-list-account')) @@ -594,7 +594,7 @@ describe('MetaMask', function () { return confirmedTxes.length === 5 }, 10000) - const txValues = await findElement(driver, By.css('.transaction-list-item__amount--secondary')) + const txValues = await findElement(driver, By.css('.transaction-list-item__amount--primary')) await driver.wait(until.elementTextMatches(txValues, /-0\sETH/), 10000) await closeAllWindowHandlesExcept(driver, [extension, dapp]) |