mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-12 15:24:39 +00:00
3bdba429e3
https://github.com/status-im/status-desktop/issues/6274 https://github.com/status-im/status-desktop/issues/6275 https://github.com/status-im/status-desktop/issues/6276 Login for 12, 18 and 24 seed Phrase
21 lines
598 B
Python
21 lines
598 B
Python
|
|
from screens.StatusMainScreen import StatusMainScreen
|
|
from screens.SettingsScreen import SettingsScreen
|
|
|
|
_statusMain = StatusMainScreen()
|
|
_settingsScreen =SettingsScreen()
|
|
|
|
|
|
@When("the user opens app settings screen")
|
|
def step(context: any):
|
|
_statusMain.open_settings()
|
|
|
|
|
|
@When("the user activates wallet and opens the wallets section")
|
|
def step(context: any):
|
|
_settingsScreen.activate_open_wallet_section()
|
|
|
|
@Then("the |any| seed phrase address is |any| displayed in the wallet")
|
|
def step(context: any, phrase :str, address: str):
|
|
_settingsScreen.verify_address(phrase, address)
|
|
|