mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-11 23:05:17 +00:00
parent
294119c08a
commit
a5f5fe530b
test/e2e
@ -152,7 +152,8 @@ class MainWindow(Window):
|
|||||||
BiometricsView().wait_until_appears().prefer_password()
|
BiometricsView().wait_until_appears().prefer_password()
|
||||||
SplashScreen().wait_until_appears().wait_until_hidden()
|
SplashScreen().wait_until_appears().wait_until_hidden()
|
||||||
if not configs.DEV_BUILD:
|
if not configs.DEV_BUILD:
|
||||||
BetaConsentPopup().confirm()
|
if driver.waitFor(lambda: BetaConsentPopup().exists, configs.timeouts.UI_LOAD_TIMEOUT_MSEC):
|
||||||
|
BetaConsentPopup().confirm()
|
||||||
return self
|
return self
|
||||||
|
|
||||||
@allure.step('Log in user')
|
@allure.step('Log in user')
|
||||||
@ -160,7 +161,8 @@ class MainWindow(Window):
|
|||||||
LoginView().log_in(user_account)
|
LoginView().log_in(user_account)
|
||||||
SplashScreen().wait_until_appears().wait_until_hidden()
|
SplashScreen().wait_until_appears().wait_until_hidden()
|
||||||
if not configs.DEV_BUILD:
|
if not configs.DEV_BUILD:
|
||||||
BetaConsentPopup().wait_until_appears().confirm()
|
if driver.waitFor(lambda: BetaConsentPopup().exists, configs.timeouts.UI_LOAD_TIMEOUT_MSEC):
|
||||||
|
BetaConsentPopup().confirm()
|
||||||
return self
|
return self
|
||||||
|
|
||||||
@allure.step('Authorize user')
|
@allure.step('Authorize user')
|
||||||
|
@ -13,7 +13,8 @@ from gui.mocked_keycard_controller import MockedKeycardController
|
|||||||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703624',
|
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703624',
|
||||||
'Create a new keycard account with a new seed phrase')
|
'Create a new keycard account with a new seed phrase')
|
||||||
@pytest.mark.case(703624)
|
@pytest.mark.case(703624)
|
||||||
@pytest.mark.skip(reason="https://github.com/status-im/desktop-qa-automation/issues/256")
|
@pytest.mark.parametrize('options', [aut_options.MOCK_KEYCARD])
|
||||||
|
@pytest.mark.skip(reason="https://github.com/status-im/desktop-qa-automation/issues/274")
|
||||||
def test_create_keycard_account_with_new_seed_phrase(main_screen: MainWindow):
|
def test_create_keycard_account_with_new_seed_phrase(main_screen: MainWindow):
|
||||||
with step('Choose option Create a new Keycard account with a new seed phrase in settings'):
|
with step('Choose option Create a new Keycard account with a new seed phrase in settings'):
|
||||||
main_screen.prepare()
|
main_screen.prepare()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user