-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
1 parent
b1af72c
commit ac25a3b
Showing
5 changed files
with
23 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { FiatOnTestnetsBottomSheetSelectorsIDs } from '../../../selectors/Settings/Advanced/FiatOnTestnetsBottomSheet.selectors'; | ||
import Gestures from '../../../utils/Gestures'; | ||
import Matchers from '../../../utils/Matchers'; | ||
|
||
class FiatOnTestnetsBottomSheet { | ||
get continueButton() { | ||
return Matchers.getElementByID( | ||
FiatOnTestnetsBottomSheetSelectorsIDs.CONTINUE_BUTTON, | ||
); | ||
} | ||
|
||
async tapContinueButton() { | ||
await Gestures.waitAndTap(this.continueButton); | ||
} | ||
} | ||
|
||
export default new FiatOnTestnetsBottomSheet(); |
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...Advanced/FiatOnTestnetsModal.selectors.js → ...ed/FiatOnTestnetsBottomSheet.selectors.js
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,4 +1,4 @@ | ||
export const FiatOnTestnetsModalSelectorsIDs = { | ||
export const FiatOnTestnetsBottomSheetSelectorsIDs = { | ||
CANCEL_BUTTON: 'cancel-button', | ||
CONTINUE_BUTTON: 'continue-button', | ||
}; |
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