1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 02:10:12 +01:00

Wait for element text match in metamask-beta-ui e2e send token test

This commit is contained in:
Dan 2018-06-22 13:30:27 -02:30
parent c343a12543
commit a6cb13422d

View File

@ -661,8 +661,7 @@ describe('MetaMask', function () {
const txValues = await findElements(driver, By.css('.tx-list-value'))
assert.equal(txValues.length, 1)
await delay(regularDelayMs)
assert.equal(await txValues[0].getText(), '50 TST')
await driver.wait(until.elementTextMatches(txValues[0], /50\sTST/))
const txStatuses = await findElements(driver, By.css('.tx-list-status'))
const tx = await driver.wait(until.elementTextMatches(txStatuses[0], /Confirmed|Failed/))
assert.equal(await tx.getText(), 'Confirmed')
@ -740,8 +739,7 @@ describe('MetaMask', function () {
assert.equal(transactions.length, 8)
const txValues = await findElements(driver, By.css('.tx-list-value'))
assert.equal(txValues.length, 8)
assert.equal(await txValues[0].getText(), '26 TST')
await driver.wait(until.elementTextMatches(txValues[0], /26\sTST/))
const txStatuses = await findElements(driver, By.css('.tx-list-status'))
await driver.wait(until.elementTextMatches(txStatuses[0], /Confirmed/))