mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
E2e remove redundant code (#16432)
* remove unused code * remove unused code
This commit is contained in:
parent
6ff8044421
commit
07b39deb61
@ -458,10 +458,10 @@ describe('MetaMask', function () {
|
|||||||
await driver.delay(veryLargeDelayMs);
|
await driver.delay(veryLargeDelayMs);
|
||||||
await driver.clickElement({ text: 'Edit', tag: 'button' });
|
await driver.clickElement({ text: 'Edit', tag: 'button' });
|
||||||
await driver.delay(veryLargeDelayMs);
|
await driver.delay(veryLargeDelayMs);
|
||||||
await driver.clickElement(
|
await driver.clickElement({
|
||||||
{ text: 'Edit suggested gas fee', tag: 'button' },
|
text: 'Edit suggested gas fee',
|
||||||
10000,
|
tag: 'button',
|
||||||
);
|
});
|
||||||
await driver.delay(veryLargeDelayMs);
|
await driver.delay(veryLargeDelayMs);
|
||||||
const inputs = await driver.findElements('input[type="number"]');
|
const inputs = await driver.findElements('input[type="number"]');
|
||||||
const gasLimitInput = inputs[0];
|
const gasLimitInput = inputs[0];
|
||||||
@ -576,10 +576,10 @@ describe('MetaMask', function () {
|
|||||||
it('customizes gas', async function () {
|
it('customizes gas', async function () {
|
||||||
await driver.clickElement('.confirm-approve-content__small-blue-text');
|
await driver.clickElement('.confirm-approve-content__small-blue-text');
|
||||||
await driver.delay(regularDelayMs);
|
await driver.delay(regularDelayMs);
|
||||||
await driver.clickElement(
|
await driver.clickElement({
|
||||||
{ text: 'Edit suggested gas fee', tag: 'button' },
|
text: 'Edit suggested gas fee',
|
||||||
10000,
|
tag: 'button',
|
||||||
);
|
});
|
||||||
await driver.delay(regularDelayMs);
|
await driver.delay(regularDelayMs);
|
||||||
|
|
||||||
const [gasLimitInput, gasPriceInput] = await driver.findElements(
|
const [gasLimitInput, gasPriceInput] = await driver.findElements(
|
||||||
|
@ -221,10 +221,10 @@ describe.skip('Create token, approve token and approve token without gas', funct
|
|||||||
await driver.clickElement(
|
await driver.clickElement(
|
||||||
'.confirm-approve-content__small-blue-text',
|
'.confirm-approve-content__small-blue-text',
|
||||||
);
|
);
|
||||||
await driver.clickElement(
|
await driver.clickElement({
|
||||||
{ text: 'Edit suggested gas fee', tag: 'button' },
|
text: 'Edit suggested gas fee',
|
||||||
10000,
|
tag: 'button',
|
||||||
);
|
});
|
||||||
const [gasLimitInput, gasPriceInput] = await driver.findElements(
|
const [gasLimitInput, gasPriceInput] = await driver.findElements(
|
||||||
'input[type="number"]',
|
'input[type="number"]',
|
||||||
);
|
);
|
||||||
|
@ -239,23 +239,6 @@ describe('Send ETH from dapp using advanced gas controls', function () {
|
|||||||
await driver.fill('#password', 'correct horse battery staple');
|
await driver.fill('#password', 'correct horse battery staple');
|
||||||
await driver.press('#password', driver.Key.ENTER);
|
await driver.press('#password', driver.Key.ENTER);
|
||||||
|
|
||||||
// goes to the settings screen
|
|
||||||
await driver.clickElement('.account-menu__icon');
|
|
||||||
await driver.clickElement({ text: 'Settings', tag: 'div' });
|
|
||||||
await driver.clickElement({ text: 'Advanced', tag: 'div' });
|
|
||||||
await driver.clickElement(
|
|
||||||
'[data-testid="advanced-setting-show-testnet-conversion"] .settings-page__content-item-col > label > div',
|
|
||||||
);
|
|
||||||
const advancedGasTitle = await driver.findElement({
|
|
||||||
text: 'Advanced gas controls',
|
|
||||||
tag: 'span',
|
|
||||||
});
|
|
||||||
await driver.scrollToElement(advancedGasTitle);
|
|
||||||
await driver.clickElement(
|
|
||||||
'[data-testid="advanced-setting-advanced-gas-inline"] .settings-page__content-item-col > label > div',
|
|
||||||
);
|
|
||||||
await driver.clickElement('.app-header__logo-container');
|
|
||||||
|
|
||||||
// initiates a send from the dapp
|
// initiates a send from the dapp
|
||||||
await driver.openNewPage('http://127.0.0.1:8080/');
|
await driver.openNewPage('http://127.0.0.1:8080/');
|
||||||
await driver.clickElement({ text: 'Send', tag: 'button' });
|
await driver.clickElement({ text: 'Send', tag: 'button' });
|
||||||
@ -272,10 +255,10 @@ describe('Send ETH from dapp using advanced gas controls', function () {
|
|||||||
css: '.transaction-total-banner',
|
css: '.transaction-total-banner',
|
||||||
text: '0.00021 ETH',
|
text: '0.00021 ETH',
|
||||||
});
|
});
|
||||||
await driver.clickElement(
|
await driver.clickElement({
|
||||||
{ text: 'Edit suggested gas fee', tag: 'button' },
|
text: 'Edit suggested gas fee',
|
||||||
10000,
|
tag: 'button',
|
||||||
);
|
});
|
||||||
await driver.waitForSelector({
|
await driver.waitForSelector({
|
||||||
css: '.transaction-total-banner',
|
css: '.transaction-total-banner',
|
||||||
text: '0.00021 ETH',
|
text: '0.00021 ETH',
|
||||||
|
Loading…
Reference in New Issue
Block a user