2021-04-15 15:58:51 +02:00
|
|
|
const { strict: assert } = require('assert');
|
2023-05-26 15:05:34 +02:00
|
|
|
const {
|
|
|
|
TEST_SEED_PHRASE_TWO,
|
|
|
|
convertToHexValue,
|
|
|
|
withFixtures,
|
2023-05-30 14:44:56 +02:00
|
|
|
assertAccountBalanceForDOM,
|
2023-05-26 15:05:34 +02:00
|
|
|
} = require('../helpers');
|
2022-10-28 10:42:12 +02:00
|
|
|
const FixtureBuilder = require('../fixture-builder');
|
2021-04-15 15:58:51 +02:00
|
|
|
|
2022-06-03 20:42:48 +02:00
|
|
|
describe('MetaMask Responsive UI', function () {
|
2021-04-15 15:58:51 +02:00
|
|
|
it('Creating a new wallet', async function () {
|
2023-05-04 08:38:09 +02:00
|
|
|
const driverOptions = { openDevToolsForTabs: true };
|
2021-04-15 15:58:51 +02:00
|
|
|
|
|
|
|
await withFixtures(
|
|
|
|
{
|
2022-10-28 10:42:12 +02:00
|
|
|
fixtures: new FixtureBuilder({ onboarding: true }).build(),
|
2021-04-15 15:58:51 +02:00
|
|
|
driverOptions,
|
|
|
|
title: this.test.title,
|
|
|
|
failOnConsoleError: false,
|
|
|
|
},
|
|
|
|
async ({ driver }) => {
|
|
|
|
await driver.navigate();
|
2023-04-14 18:51:13 +02:00
|
|
|
// agree to terms of use
|
|
|
|
await driver.clickElement('[data-testid="onboarding-terms-checkbox"]');
|
2021-04-15 15:58:51 +02:00
|
|
|
|
2023-01-13 17:25:01 +01:00
|
|
|
// welcome
|
|
|
|
await driver.clickElement('[data-testid="onboarding-create-wallet"]');
|
2021-04-15 15:58:51 +02:00
|
|
|
|
2023-01-13 17:25:01 +01:00
|
|
|
// metrics
|
|
|
|
await driver.clickElement('[data-testid="metametrics-no-thanks"]');
|
2021-04-15 15:58:51 +02:00
|
|
|
|
2023-01-13 17:25:01 +01:00
|
|
|
// create password
|
|
|
|
await driver.fill(
|
|
|
|
'[data-testid="create-password-new"]',
|
|
|
|
'correct horse battery staple',
|
|
|
|
);
|
|
|
|
await driver.fill(
|
|
|
|
'[data-testid="create-password-confirm"]',
|
|
|
|
'correct horse battery staple',
|
|
|
|
);
|
|
|
|
await driver.clickElement('[data-testid="create-password-terms"]');
|
|
|
|
await driver.clickElement('[data-testid="create-password-wallet"]');
|
|
|
|
|
|
|
|
// secure wallet
|
|
|
|
await driver.clickElement('[data-testid="secure-wallet-recommended"]');
|
|
|
|
|
|
|
|
// review
|
|
|
|
await driver.clickElement('[data-testid="recovery-phrase-reveal"]');
|
|
|
|
const chipTwo = await (
|
|
|
|
await driver.findElement('[data-testid="recovery-phrase-chip-2"]')
|
|
|
|
).getText();
|
|
|
|
const chipThree = await (
|
|
|
|
await driver.findElement('[data-testid="recovery-phrase-chip-3"]')
|
|
|
|
).getText();
|
|
|
|
const chipSeven = await (
|
|
|
|
await driver.findElement('[data-testid="recovery-phrase-chip-7"]')
|
|
|
|
).getText();
|
|
|
|
await driver.clickElement('[data-testid="recovery-phrase-next"]');
|
|
|
|
|
|
|
|
// confirm
|
|
|
|
await driver.fill('[data-testid="recovery-phrase-input-2"]', chipTwo);
|
|
|
|
await driver.fill('[data-testid="recovery-phrase-input-3"]', chipThree);
|
|
|
|
await driver.fill('[data-testid="recovery-phrase-input-7"]', chipSeven);
|
|
|
|
await driver.clickElement('[data-testid="recovery-phrase-confirm"]');
|
|
|
|
|
|
|
|
// complete
|
|
|
|
await driver.clickElement('[data-testid="onboarding-complete-done"]');
|
|
|
|
|
|
|
|
// pin extension
|
|
|
|
await driver.clickElement('[data-testid="pin-extension-next"]');
|
|
|
|
await driver.clickElement('[data-testid="pin-extension-done"]');
|
2021-11-10 18:27:10 +01:00
|
|
|
|
|
|
|
// assert balance
|
|
|
|
const balance = await driver.findElement(
|
2023-06-01 23:14:38 +02:00
|
|
|
'[data-testid="eth-overview__primary-currency"]',
|
2021-11-10 18:27:10 +01:00
|
|
|
);
|
|
|
|
assert.ok(/^0\sETH$/u.test(await balance.getText()));
|
2021-04-15 15:58:51 +02:00
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Importing existing wallet from lock page', async function () {
|
2023-05-04 08:38:09 +02:00
|
|
|
const driverOptions = { openDevToolsForTabs: true };
|
2021-04-15 15:58:51 +02:00
|
|
|
|
|
|
|
await withFixtures(
|
|
|
|
{
|
2022-10-28 10:42:12 +02:00
|
|
|
fixtures: new FixtureBuilder().build(),
|
2021-04-15 15:58:51 +02:00
|
|
|
driverOptions,
|
|
|
|
title: this.test.title,
|
|
|
|
failOnConsoleError: false,
|
|
|
|
},
|
2023-03-20 10:29:18 +01:00
|
|
|
async ({ driver, ganacheServer }) => {
|
2021-04-15 15:58:51 +02:00
|
|
|
await driver.navigate();
|
|
|
|
|
2021-05-07 15:07:43 +02:00
|
|
|
// Import Secret Recovery Phrase
|
2021-04-15 15:58:51 +02:00
|
|
|
const restoreSeedLink = await driver.findClickableElement(
|
2022-02-22 16:45:19 +01:00
|
|
|
'.unlock-page__link',
|
2021-04-15 15:58:51 +02:00
|
|
|
);
|
2022-02-22 16:45:19 +01:00
|
|
|
assert.equal(await restoreSeedLink.getText(), 'Forgot password?');
|
2021-04-15 15:58:51 +02:00
|
|
|
await restoreSeedLink.click();
|
|
|
|
|
2022-03-16 22:43:21 +01:00
|
|
|
await driver.pasteIntoField(
|
2022-03-21 20:09:26 +01:00
|
|
|
'[data-testid="import-srp__srp-word-0"]',
|
2023-05-26 15:05:34 +02:00
|
|
|
TEST_SEED_PHRASE_TWO,
|
2022-02-03 15:06:43 +01:00
|
|
|
);
|
2021-04-15 15:58:51 +02:00
|
|
|
|
|
|
|
await driver.fill('#password', 'correct horse battery staple');
|
|
|
|
await driver.fill('#confirm-password', 'correct horse battery staple');
|
2021-12-10 20:32:13 +01:00
|
|
|
await driver.press('#confirm-password', driver.Key.ENTER);
|
2021-04-15 15:58:51 +02:00
|
|
|
|
|
|
|
// balance renders
|
2023-05-30 14:44:56 +02:00
|
|
|
await assertAccountBalanceForDOM(driver, ganacheServer);
|
2021-04-15 15:58:51 +02:00
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Send Transaction from responsive window', async function () {
|
2023-05-04 08:38:09 +02:00
|
|
|
const driverOptions = { openDevToolsForTabs: true };
|
2021-04-15 15:58:51 +02:00
|
|
|
const ganacheOptions = {
|
|
|
|
accounts: [
|
|
|
|
{
|
|
|
|
secretKey:
|
|
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
2022-01-19 00:08:41 +01:00
|
|
|
balance: convertToHexValue(25000000000000000000),
|
2021-04-15 15:58:51 +02:00
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
await withFixtures(
|
|
|
|
{
|
2022-10-28 10:42:12 +02:00
|
|
|
fixtures: new FixtureBuilder().build(),
|
2021-04-15 15:58:51 +02:00
|
|
|
driverOptions,
|
|
|
|
ganacheOptions,
|
|
|
|
title: this.test.title,
|
|
|
|
},
|
|
|
|
async ({ driver }) => {
|
|
|
|
await driver.navigate();
|
|
|
|
await driver.fill('#password', 'correct horse battery staple');
|
|
|
|
await driver.press('#password', driver.Key.ENTER);
|
|
|
|
|
|
|
|
// Send ETH from inside MetaMask
|
|
|
|
// starts to send a transaction
|
|
|
|
await driver.clickElement('[data-testid="eth-overview-send"]');
|
|
|
|
|
|
|
|
await driver.fill(
|
2023-06-08 19:09:39 +02:00
|
|
|
'input[placeholder="Enter public address (0x) or ENS name"]',
|
2021-04-15 15:58:51 +02:00
|
|
|
'0x2f318C334780961FB129D2a6c30D0763d9a5C970',
|
|
|
|
);
|
|
|
|
|
|
|
|
const inputAmount = await driver.fill('.unit-input__input', '1');
|
|
|
|
|
2021-12-02 19:28:24 +01:00
|
|
|
const inputValue = await inputAmount.getProperty('value');
|
2021-04-15 15:58:51 +02:00
|
|
|
assert.equal(inputValue, '1');
|
|
|
|
|
|
|
|
// confirming transcation
|
|
|
|
await driver.clickElement({ text: 'Next', tag: 'button' });
|
|
|
|
await driver.clickElement({ text: 'Confirm', tag: 'button' });
|
|
|
|
|
|
|
|
// finds the transaction in the transactions list
|
|
|
|
await driver.clickElement('[data-testid="home__activity-tab"]');
|
|
|
|
await driver.wait(async () => {
|
|
|
|
const confirmedTxes = await driver.findElements(
|
2023-07-17 19:48:15 +02:00
|
|
|
'.transaction-list__completed-transactions .activity-list-item',
|
2021-04-15 15:58:51 +02:00
|
|
|
);
|
|
|
|
return confirmedTxes.length === 1;
|
|
|
|
}, 10000);
|
|
|
|
|
2023-03-28 14:59:41 +02:00
|
|
|
await driver.waitForSelector({
|
2023-07-17 19:48:15 +02:00
|
|
|
css: '[data-testid="transaction-list-item-primary-currency"]',
|
2023-03-28 14:59:41 +02:00
|
|
|
text: '-1 ETH',
|
|
|
|
});
|
2021-04-15 15:58:51 +02:00
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|