-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
37 changed files
with
464 additions
and
242 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
import {by, element} from 'detox' | ||
|
||
export const dropDownLanguagePicker = () => | ||
element(by.id('dropDownLanguagePicker')) | ||
export const dropDownLanguagePicker = () => element(by.id('dropDownLanguagePicker')) | ||
export const checkboxSelect = () => element(by.id('checkboxSelect')) | ||
export const linkToS = () => element(by.id('linkToS')) | ||
export const linkPrivacyPolicy = () => element(by.id('linkPrivacyPolicy')) | ||
export const buttonContinue = () => element(by.id('buttonContinue')) | ||
export const buttonSelectLanguageEnglish = () => | ||
element(by.id('languageSelect_en-US')) | ||
export const buttonSelectLanguageItalian = () => | ||
element(by.id('languageSelect_it-IT')) | ||
export const buttonSelectLanguageEnglish = () => element(by.id('languageSelect_en-US')) | ||
export const buttonSelectLanguageItalian = () => element(by.id('languageSelect_it-IT')) | ||
export const buttonBack = () => element(by.id('buttonBack')) | ||
export const buttonBack2 = () => element(by.id('buttonBack2')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
import {by, element} from 'detox' | ||
|
||
export const pageTitle = () => element(by.text('My wallets')) | ||
export const addWalletButton = () => | ||
element(by.id('addWalletOnHaskellShelleyButton')) | ||
export const addWalletByronButton = () => | ||
element(by.id('addWalletOnByronButton')) | ||
export const addWalletTestnetButton = () => | ||
element(by.id('addWalletPreprodShelleyButton')) | ||
export const walletByNameButton = (walletName: string) => | ||
element(by.text(walletName)) | ||
export const addWalletMainnetButton = () => element(by.id('addWalletMainnetButton')) | ||
export const addWalletButton = () => element(by.id('addWalletOnHaskellShelleyButton')) | ||
export const addWalletByronButton = () => element(by.id('addWalletOnByronButton')) | ||
export const addWalletTestnetButton = () => element(by.id('addWalletPreprodShelleyButton')) | ||
export const walletByNameButton = (walletName: string) => element(by.text(walletName)) | ||
export const createWalletButton = () => element(by.id('createWalletButton')) | ||
export const restoreWalletButton = () => element(by.id('restoreWalletButton')) | ||
export const connectLedgerWalletButton = () => | ||
element(by.id('createLedgerWalletButton')) | ||
export const connectLedgerWalletButton = () => element(by.id('createLedgerWalletButton')) | ||
export const buttonDeveloperOptions = () => element(by.id('btnDevOptions')) | ||
|
||
export const tabWallet = (walletName: string) => element(by.label(walletName)) |
Oops, something went wrong.