diff options
Fix element located bug in beta e2e contract method call test.
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/beta/metamask-beta-ui.spec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/beta/metamask-beta-ui.spec.js b/test/e2e/beta/metamask-beta-ui.spec.js index 382aa4060..ee1fd0db2 100644 --- a/test/e2e/beta/metamask-beta-ui.spec.js +++ b/test/e2e/beta/metamask-beta-ui.spec.js @@ -486,7 +486,7 @@ describe('MetaMask', function () { await delay(regularDelayMs) let gasModal = await driver.findElement(By.css('span .modal')) - await driver.wait(until.elementLocated('send-v2__customize-gas__title')) + await driver.wait(until.elementLocated(By.css('.send-v2__customize-gas__title'))) const [gasPriceInput, gasLimitInput] = await findElements(driver, By.css('.customize-gas-input')) await gasPriceInput.clear() |