Add Timeouts for driver.wait

feature/default_network_editable
Thomas 7 years ago
parent 8d9d55fec3
commit 74e36e6f8f
  1. 17
      test/e2e/chrome/metamask.spec.js

@ -39,20 +39,19 @@ describe('Metamask popup page', function () {
}) })
it(`selects MetaMask's extension id and opens it in the current tab`, async function () { it(`selects MetaMask's extension id and opens it in the current tab`, async function () {
// For latest Chrome version (when they updated the extension view) // // For latest Chrome version (when they updated the extension view)
// Use piercing CSS selector /deep/ to access the extension id in the Shadow Dom // // Use piercing CSS selector /deep/ to access the extension id in the Shadow Dom
const elems = await driver.findElements(By.css('* /deep/ extensions-item')) // const elems = await driver.findElements(By.css('* /deep/ extensions-item'))
extensionId = await elems[1].getAttribute('id')
// const elems = await driver.findElements(By.css('.extension-list-item-wrapper'))
// extensionId = await elems[1].getAttribute('id') // extensionId = await elems[1].getAttribute('id')
const elems = await driver.findElements(By.css('.extension-list-item-wrapper'))
extensionId = await elems[1].getAttribute('id')
await driver.get(`chrome-extension://${extensionId}/popup.html`) await driver.get(`chrome-extension://${extensionId}/popup.html`)
await delay(500) await delay(500)
}) })
it('sets provider type to localhost', async function () { it('sets provider type to localhost', async function () {
await driver.wait(until.elementLocated(By.css('#app-content'))) await driver.wait(until.elementLocated(By.css('#app-content')), 300)
await setProviderType('localhost') await setProviderType('localhost')
await delay(300)
}) })
}) })
@ -68,7 +67,7 @@ describe('Metamask popup page', function () {
const privacyHeader = await driver.findElement(By.css('#app-content > div > div.app-primary.from-right > div > div.flex-column.flex-center.flex-grow > h3')).getText() const privacyHeader = await driver.findElement(By.css('#app-content > div > div.app-primary.from-right > div > div.flex-column.flex-center.flex-grow > h3')).getText()
assert.equal(privacyHeader, 'PRIVACY NOTICE', 'shows privacy notice') assert.equal(privacyHeader, 'PRIVACY NOTICE', 'shows privacy notice')
return privacyHeader === 'PRIVACY NOTICE' return privacyHeader === 'PRIVACY NOTICE'
}) }, 300)
await driver.findElement(By.css('button')).click() await driver.findElement(By.css('button')).click()
}) })
@ -90,7 +89,7 @@ describe('Metamask popup page', function () {
it('allows the button to be clicked when scrolled to the bottom of TOU', async () => { it('allows the button to be clicked when scrolled to the bottom of TOU', async () => {
const button = await driver.findElement(By.css('#app-content > div > div.app-primary.from-right > div > div.flex-column.flex-center.flex-grow > button')) const button = await driver.findElement(By.css('#app-content > div > div.app-primary.from-right > div > div.flex-column.flex-center.flex-grow > button'))
await driver.wait(until.elementIsEnabled(button)) await driver.wait(until.elementIsEnabled(button), 300)
const buttonEnabled = await button.isEnabled() const buttonEnabled = await button.isEnabled()
assert.equal(buttonEnabled, true, 'enabled continue button') assert.equal(buttonEnabled, true, 'enabled continue button')
await button.click() await button.click()

Loading…
Cancel
Save