From 10baffaf48825b9d1bff71a1cea374ffcbb30792 Mon Sep 17 00:00:00 2001 From: Thomas Date: Thu, 3 May 2018 14:14:02 -0700 Subject: Quit chromedriver after test --- test/e2e/chrome/metamask.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/e2e') diff --git a/test/e2e/chrome/metamask.spec.js b/test/e2e/chrome/metamask.spec.js index 774f1cfe3..b0e5da0fc 100644 --- a/test/e2e/chrome/metamask.spec.js +++ b/test/e2e/chrome/metamask.spec.js @@ -26,9 +26,9 @@ describe('Metamask popup page', function () { } }) - // after(async function () { - // await driver.quit() - // }) + after(async function () { + await driver.quit() + }) describe('Setup', function () { -- cgit v1.2.3 From 23e1290e27c165e967a4a642980abc7c18d759b1 Mon Sep 17 00:00:00 2001 From: Thomas Date: Thu, 3 May 2018 14:18:06 -0700 Subject: Add a comment on the confirmation transaction metamask popup showing blank, but button still renders --- test/e2e/firefox/metamask.spec.js | 1 + 1 file changed, 1 insertion(+) (limited to 'test/e2e') diff --git a/test/e2e/firefox/metamask.spec.js b/test/e2e/firefox/metamask.spec.js index b98ecb8ac..f9a798d0b 100644 --- a/test/e2e/firefox/metamask.spec.js +++ b/test/e2e/firefox/metamask.spec.js @@ -234,6 +234,7 @@ describe('', function () { await delay(1000) }) + // There is an issue with blank confirmation window, 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[2]) -- cgit v1.2.3