aboutsummaryrefslogtreecommitdiffstats
path: root/test/e2e/metamask.spec.js
diff options
context:
space:
mode:
authorThomas <thomas.b.huang@gmail.com>2018-05-17 10:12:03 +0800
committerThomas <thomas.b.huang@gmail.com>2018-05-17 10:12:03 +0800
commitf2815d3121d5edcbc5cc0411b5b52092f3072ad1 (patch)
treec2448dc0c2ef8bab9f2dbc3fc7744da1d5f72931 /test/e2e/metamask.spec.js
parent77e13640b4dba89f870cfa35e7834ce3d61ed730 (diff)
downloadtangerine-wallet-browser-f2815d3121d5edcbc5cc0411b5b52092f3072ad1.tar
tangerine-wallet-browser-f2815d3121d5edcbc5cc0411b5b52092f3072ad1.tar.gz
tangerine-wallet-browser-f2815d3121d5edcbc5cc0411b5b52092f3072ad1.tar.bz2
tangerine-wallet-browser-f2815d3121d5edcbc5cc0411b5b52092f3072ad1.tar.lz
tangerine-wallet-browser-f2815d3121d5edcbc5cc0411b5b52092f3072ad1.tar.xz
tangerine-wallet-browser-f2815d3121d5edcbc5cc0411b5b52092f3072ad1.tar.zst
tangerine-wallet-browser-f2815d3121d5edcbc5cc0411b5b52092f3072ad1.zip
Adjustments for previous PR
Diffstat (limited to 'test/e2e/metamask.spec.js')
-rw-r--r--test/e2e/metamask.spec.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/e2e/metamask.spec.js b/test/e2e/metamask.spec.js
index 1fc557768..707ca2560 100644
--- a/test/e2e/metamask.spec.js
+++ b/test/e2e/metamask.spec.js
@@ -4,7 +4,7 @@ const path = require('path')
const assert = require('assert')
const pify = require('pify')
const webdriver = require('selenium-webdriver')
-const By = webdriver.By
+const { By, Key } = webdriver
const { delay, buildChromeWebDriver, buildFirefoxWebdriver, installWebExt, getExtensionIdChrome, getExtensionIdFirefox } = require('./func')
describe('Metamask popup page', function () {
@@ -70,7 +70,7 @@ describe('Metamask popup page', function () {
})
it('show terms of use', async () => {
- const terms = await driver.findElement(By.css('#app-content > div > div.app-primary.from-right > div > div.flex-column.flex-center.flex-grow > h3')).getText()
+ const terms = await driver.findElement(By.css('.terms-header')).getText()
assert.equal(terms, 'TERMS OF USE', 'shows terms of use')
delay(300)
})
@@ -124,7 +124,7 @@ describe('Metamask popup page', function () {
it('accepts account password after lock', async () => {
await delay(500)
await driver.findElement(By.id('password-box')).sendKeys('123456789')
- await driver.findElement(By.css('button')).sendKeys(webdriver.Key.ENTER)
+ await driver.findElement(By.id('password-box')).sendKeys(Key.ENTER)
await delay(500)
})
@@ -235,7 +235,7 @@ describe('Metamask popup page', function () {
await delay(1000)
})
- // // There is an issue with blank confirmation window in Firefox, but the button is still there and the driver is able to clicked (?.?)
+ // There is an issue with blank confirmation window in Firefox, but the button is still there and the driver is able to clicked (?.?)
it('confirms transaction in MetaMask popup', async function () {
const windowHandles = await driver.getAllWindowHandles()
await driver.switchTo().window(windowHandles[windowHandles.length - 1])