Skip to content

Commit

Permalink
test: remove unused fonctions
Browse files Browse the repository at this point in the history
  • Loading branch information
abdurrahman-ledger committed Oct 16, 2024
1 parent 61cc8c5 commit 446e661
Showing 1 changed file with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ export default class OnboardingStepsPage {
getStartedButtonId = "onboarding-getStarted-button";
acceptAnalyticsButtonId = "accept-analytics-button";
exploreWithoutDeviceButtonId = "discoverLive-exploreWithoutADevice";
readyToScanButtonID = "onboarding-scan-button";
scanAndImportAccountsPageID = "onboarding-import-accounts-title";
discoverLiveTitle = (index: number) => `onboarding-discoverLive-${index}-title`;
onboardingGetStartedButton = () => getElementById(this.getStartedButtonId);
acceptAnalyticsButton = () => getElementById(this.acceptAnalyticsButtonId);
Expand All @@ -23,8 +21,6 @@ export default class OnboardingStepsPage {
buyLedgerButton = () => getElementById("onboarding-noLedgerYetModal-buy");
exploreWithoutDeviceButton = () => getElementById(this.exploreWithoutDeviceButtonId);
connectLedgerButton = () => getElementById("Existing Wallet | Connect");
syncWithLedgerLiveDesktop = () => getElementById("Existing Wallet | Sync");
readyToScanButton = () => getElementById(this.readyToScanButtonID);
pairNanoButton = () => getElementById("Onboarding-PairNewNano");
maybeLaterButton = () => getElementById("notifications-prompt-later");

Expand Down Expand Up @@ -100,18 +96,6 @@ export default class OnboardingStepsPage {
await tapByElement(this.connectLedgerButton());
}

async chooseToSyncWithLedgerLiveDesktop() {
await tapByElement(this.syncWithLedgerLiveDesktop());
}

async goesThroughLedgerLiveDesktopScanning() {
await tapByElement(this.readyToScanButton());
}

async waitForScanningPage() {
await waitForElementById(this.scanAndImportAccountsPageID);
}

// Setup new Ledger
async chooseSetupLedger() {
await tapById(this.setupLedger);
Expand Down

0 comments on commit 446e661

Please sign in to comment.