1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00
metamask-extension/test/e2e/tests/simple-send.spec.js

39 lines
1.4 KiB
JavaScript
Raw Normal View History

const { convertToHexValue, withFixtures } = require('../helpers');
const FixtureBuilder = require('../fixture-builder');
describe('Simple send', function () {
it('can send a simple transaction from one account to another', async function () {
const ganacheOptions = {
accounts: [
{
2020-11-03 00:41:28 +01:00
secretKey:
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
balance: convertToHexValue(25000000000000000000),
},
],
};
await withFixtures(
{
fixtures: new FixtureBuilder().build(),
ganacheOptions,
title: this.test.title,
},
async ({ driver }) => {
await driver.navigate();
2021-04-12 17:32:38 +02:00
await driver.fill('#password', 'correct horse battery staple');
await driver.press('#password', driver.Key.ENTER);
await driver.clickElement('[data-testid="eth-overview-send"]');
2021-04-12 17:32:38 +02:00
await driver.fill(
'[data-testid="ens-input"]',
2020-11-03 00:41:28 +01:00
'0x985c30949c92df7a0bd42e0f3e3d539ece98db24',
);
2021-04-12 17:32:38 +02:00
await driver.fill('.unit-input__input', '1');
await driver.clickElement('[data-testid="page-container-footer-next"]');
await driver.clickElement('[data-testid="page-container-footer-next"]');
await driver.clickElement('[data-testid="home__activity-tab"]');
await driver.findElement('.transaction-list-item');
},
);
});
});