mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
Mitigate flaky test with the use of new function (#16655)
This commit is contained in:
parent
6dddd246d1
commit
6c00785271
@ -293,18 +293,13 @@ describe('Stores custom RPC history', function () {
|
||||
await driver.clickElement('.btn-danger');
|
||||
|
||||
// wait for confirm delete modal to be visible
|
||||
const confirmDeleteModal = await driver.findVisibleElement(
|
||||
'span .modal',
|
||||
);
|
||||
await driver.findVisibleElement('span .modal');
|
||||
|
||||
await driver.clickElement(
|
||||
'.button.btn-danger-primary.modal-container__footer-button',
|
||||
);
|
||||
|
||||
if (await driver.isElementPresent('span .modal')) {
|
||||
// wait for confirm delete modal to be removed from DOM.
|
||||
await confirmDeleteModal.waitForElementState('hidden');
|
||||
}
|
||||
await driver.waitForElementNotPresent('span .modal');
|
||||
|
||||
const newNetworkListItems = await driver.findElements(
|
||||
'.networks-tab__networks-list-name',
|
||||
|
Loading…
Reference in New Issue
Block a user