1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Reattempt to find network selector; wait for network selector dropdown to contain localhost before attempting to click. (e2e beta tests)

This commit is contained in:
Dan 2018-07-11 15:13:32 -02:30
parent 8912955765
commit 05ee2b7401

View File

@ -84,15 +84,19 @@ describe('MetaMask', function () {
networkSelector = await findElement(driver, By.css('#network_component')) networkSelector = await findElement(driver, By.css('#network_component'))
} catch (e) { } catch (e) {
await loadExtension(driver, extensionId) await loadExtension(driver, extensionId)
await delay(largeDelayMs * 2)
networkSelector = await findElement(driver, By.css('#network_component'))
} }
await delay(regularDelayMs) await delay(regularDelayMs)
}) })
it('use the local network', async function () { it('uses the local network', async function () {
await networkSelector.click() await networkSelector.click()
await delay(regularDelayMs) await delay(regularDelayMs)
const localhost = await findElement(driver, By.xpath(`//li[contains(text(), 'Localhost')]`)) const networks = await findElements(driver, By.css('.dropdown-menu-item'))
const localhost = networks[4]
await driver.wait(until.elementTextMatches(localhost, /Localhost/))
await localhost.click() await localhost.click()
await delay(regularDelayMs) await delay(regularDelayMs)
}) })
@ -795,7 +799,6 @@ describe('MetaMask', function () {
await driver.switchTo().window(extension) await driver.switchTo().window(extension)
await delay(largeDelayMs) await delay(largeDelayMs)
const [txListItem] = await findElements(driver, By.css('.tx-list-item'))
const [txListValue] = await findElements(driver, By.css('.tx-list-value')) const [txListValue] = await findElements(driver, By.css('.tx-list-value'))
await driver.wait(until.elementTextMatches(txListValue, /7\sTST/), 10000) await driver.wait(until.elementTextMatches(txListValue, /7\sTST/), 10000)
await txListValue.click() await txListValue.click()