1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

Add e2e testcase for Settings Search functionality (#14259)

* Settings Search e2e testcase

* Remove unnecessary variable

* Include assertations for correct item urls

* Remove extra assertions

* Change assertion of url for page main header

* Remove un-used keys for urls

* Fix variable scope
This commit is contained in:
seaona 2022-04-04 18:27:36 +02:00 committed by GitHub
parent 4bcb48df53
commit 78828f1b6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,265 @@
const { strict: assert } = require('assert');
const { convertToHexValue, withFixtures } = require('../helpers');
describe('Settings Search', function () {
const ganacheOptions = {
accounts: [
{
secretKey:
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
balance: convertToHexValue(25000000000000000000),
},
],
};
const settingsSearch = {
general: 'Primary Currency',
advanced: 'State Logs',
contacts: 'Contacts',
security: 'Reveal Secret',
alerts: 'Browsing a website',
networks: 'Ethereum Mainnet',
experimental: 'Token Detection',
about: 'Terms of Use',
};
it('should find element inside the General tab', async function () {
await withFixtures(
{
dapp: true,
fixtures: 'imported-account',
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);
await driver.clickElement('.account-menu__icon');
await driver.clickElement({ text: 'Settings', tag: 'div' });
await driver.fill('#search-settings', settingsSearch.general);
await driver.clickElement({ text: 'General', tag: 'span' });
assert.equal(
await driver.isElementPresent({ text: 'General', tag: 'div' }),
true,
'Item does not redirect to correct page',
);
},
);
});
it('should find element inside the Advanced tab', async function () {
await withFixtures(
{
dapp: true,
fixtures: 'imported-account',
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);
await driver.clickElement('.account-menu__icon');
await driver.clickElement({ text: 'Settings', tag: 'div' });
await driver.fill('#search-settings', settingsSearch.advanced);
// Check if element redirects to the correct page
await driver.clickElement({ text: 'Advanced', tag: 'span' });
assert.equal(
await driver.isElementPresent({ text: 'Advanced', tag: 'div' }),
true,
'Item does not redirect to correct page',
);
},
);
});
it('should find element inside the Contacts tab', async function () {
await withFixtures(
{
dapp: true,
fixtures: 'imported-account',
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);
await driver.clickElement('.account-menu__icon');
await driver.clickElement({ text: 'Settings', tag: 'div' });
await driver.fill('#search-settings', settingsSearch.contacts);
// Check if element redirects to the correct page
await driver.clickElement({ text: 'Contacts', tag: 'span' });
assert.equal(
await driver.isElementPresent({ text: 'Contacts', tag: 'div' }),
true,
'Item does not redirect to correct page',
);
},
);
});
it('should find element inside the Security tab', async function () {
await withFixtures(
{
dapp: true,
fixtures: 'imported-account',
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);
await driver.clickElement('.account-menu__icon');
await driver.clickElement({ text: 'Settings', tag: 'div' });
await driver.fill('#search-settings', settingsSearch.security);
// Check if element redirects to the correct page
await driver.clickElement({ text: 'Security', tag: 'span' });
assert.equal(
await driver.isElementPresent({ text: 'Security', tag: 'div' }),
true,
'Item does not redirect to correct page',
);
},
);
});
it('should find element inside the Alerts tab', async function () {
await withFixtures(
{
dapp: true,
fixtures: 'imported-account',
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);
await driver.clickElement('.account-menu__icon');
await driver.clickElement({ text: 'Settings', tag: 'div' });
await driver.fill('#search-settings', settingsSearch.alerts);
// Check if element redirects to the correct page
await driver.clickElement({ text: 'Alerts', tag: 'span' });
assert.equal(
await driver.isElementPresent({ text: 'Alerts', tag: 'div' }),
true,
'Item does not redirect to correct page',
);
},
);
});
it('should find element inside the Networks tab', async function () {
await withFixtures(
{
dapp: true,
fixtures: 'imported-account',
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);
await driver.clickElement('.account-menu__icon');
await driver.clickElement({ text: 'Settings', tag: 'div' });
await driver.fill('#search-settings', settingsSearch.networks);
// Check if element redirects to the correct page
await driver.clickElement({ text: 'Networks', tag: 'span' });
assert.equal(
await driver.isElementPresent({ text: 'Networks', tag: 'div' }),
true,
'Item does not redirect to correct page',
);
},
);
});
it('should find element inside the Experimental tab', async function () {
await withFixtures(
{
dapp: true,
fixtures: 'imported-account',
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);
await driver.clickElement('.account-menu__icon');
await driver.clickElement({ text: 'Settings', tag: 'div' });
await driver.fill('#search-settings', settingsSearch.experimental);
// Check if element redirects to the correct page
await driver.clickElement({ text: 'Experimental', tag: 'span' });
assert.equal(
await driver.isElementPresent({ text: 'Experimental', tag: 'div' }),
true,
'Item does not redirect to correct page',
);
},
);
});
it('should find element inside the About tab', async function () {
await withFixtures(
{
dapp: true,
fixtures: 'imported-account',
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);
await driver.clickElement('.account-menu__icon');
await driver.clickElement({ text: 'Settings', tag: 'div' });
await driver.fill('#search-settings', settingsSearch.about);
// Check if element redirects to the correct page
await driver.clickElement({ text: 'About', tag: 'span' });
assert.equal(
await driver.isElementPresent({ text: 'About', tag: 'div' }),
true,
'Item does not redirect to correct page',
);
},
);
});
it('should display "Element not found" for a non-existing element', async function () {
await withFixtures(
{
dapp: true,
fixtures: 'imported-account',
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);
await driver.clickElement('.account-menu__icon');
await driver.clickElement({ text: 'Settings', tag: 'div' });
await driver.fill('#search-settings', 'Lorem ipsum');
const found = await driver.isElementPresent({
text: 'No matching results found',
tag: 'span',
});
assert.equal(found, true, 'Non existent element was found');
},
);
});
});