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',