From a8ab1add7848bcef30465a7b5317baac04dd18f1 Mon Sep 17 00:00:00 2001 From: cmd-ob Date: Fri, 20 Dec 2024 12:25:55 +0000 Subject: [PATCH] remove getAssetPercentageIncreaseDecrease method --- test/e2e/page-objects/pages/home/asset-list.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/test/e2e/page-objects/pages/home/asset-list.ts b/test/e2e/page-objects/pages/home/asset-list.ts index 2c1ff4866f53..c168a607dcdd 100644 --- a/test/e2e/page-objects/pages/home/asset-list.ts +++ b/test/e2e/page-objects/pages/home/asset-list.ts @@ -145,18 +145,6 @@ class AssetListPage { return tokenNames; } - async getAssetPercentageIncreaseDecrease( - assetAddress: string, - ): Promise { - console.log( - `Retrieving the percentage increase or decrease for ${assetAddress}`, - ); - const percentageElement = await this.driver.findElement( - this.tokenPercentage(assetAddress), - ); - const percentage = await percentageElement.getText(); - return percentage; - } async sortTokenList( sortBy: 'alphabetically' | 'decliningBalance',