You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.5 KiB
38 lines
1.5 KiB
const { Key } = require('selenium-webdriver');
|
|
const { withFixtures } = require('../helpers');
|
|
|
|
describe('Simple send', function () {
|
|
it('can send a simple transaction from one account to another', async function () {
|
|
const ganacheOptions = {
|
|
accounts: [
|
|
{
|
|
secretKey:
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
balance: 25000000000000000000,
|
|
},
|
|
],
|
|
};
|
|
await withFixtures(
|
|
{ fixtures: 'imported-account', ganacheOptions, title: this.test.title },
|
|
async ({ driver }) => {
|
|
await driver.navigate();
|
|
const passwordField = await driver.findElement('#password');
|
|
await passwordField.sendKeys('correct horse battery staple');
|
|
await passwordField.sendKeys(Key.ENTER);
|
|
await driver.clickElement('[data-testid="eth-overview-send"]');
|
|
const recipientAddressField = await driver.findElement(
|
|
'[data-testid="ens-input"]',
|
|
);
|
|
await recipientAddressField.sendKeys(
|
|
'0x985c30949c92df7a0bd42e0f3e3d539ece98db24',
|
|
);
|
|
const amountField = await driver.findElement('.unit-input__input');
|
|
await amountField.sendKeys('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');
|
|
},
|
|
);
|
|
});
|
|
});
|
|
|