chore: replace references with dev task
This commit is contained in:
parent
adff1be5f5
commit
5b53e91f73
|
@ -16,7 +16,7 @@ pytestmark = marks
|
||||||
@pytest.mark.case(703007)
|
@pytest.mark.case(703007)
|
||||||
@pytest.mark.parametrize('user_account', [constants.user.user_account_one])
|
@pytest.mark.parametrize('user_account', [constants.user.user_account_one])
|
||||||
@pytest.mark.parametrize('new_name', [pytest.param('NewUserName')])
|
@pytest.mark.parametrize('new_name', [pytest.param('NewUserName')])
|
||||||
# @pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/13868')
|
@pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/13799')
|
||||||
def test_change_own_display_name(main_screen: MainWindow, user_account, new_name):
|
def test_change_own_display_name(main_screen: MainWindow, user_account, new_name):
|
||||||
with step('Open own profile popup and check name of user is correct'):
|
with step('Open own profile popup and check name of user is correct'):
|
||||||
profile = main_screen.left_panel.open_online_identifier()
|
profile = main_screen.left_panel.open_online_identifier()
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
import time
|
|
||||||
|
|
||||||
import allure
|
import allure
|
||||||
import pytest
|
import pytest
|
||||||
from allure_commons._allure import step
|
from allure_commons._allure import step
|
||||||
|
|
||||||
from gui.screens.settings_profile import ProfileSettingsView
|
|
||||||
from . import marks
|
from . import marks
|
||||||
|
|
||||||
import constants
|
import constants
|
||||||
|
@ -21,7 +19,7 @@ pytestmark = marks
|
||||||
@pytest.mark.parametrize('user_account, user_account_changed',
|
@pytest.mark.parametrize('user_account, user_account_changed',
|
||||||
[pytest.param(constants.user.user_account_one, constants.user.user_account_one_changed_name)])
|
[pytest.param(constants.user.user_account_one, constants.user.user_account_one_changed_name)])
|
||||||
@pytest.mark.parametrize('bio, links', [pytest.param('This is my bio', constants.social_links)])
|
@pytest.mark.parametrize('bio, links', [pytest.param('This is my bio', constants.social_links)])
|
||||||
# @pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/13868')
|
@pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/13799')
|
||||||
def test_set_name_bio_social_links(main_screen: MainWindow, aut: AUT, user_account, user_account_changed, bio, links):
|
def test_set_name_bio_social_links(main_screen: MainWindow, aut: AUT, user_account, user_account_changed, bio, links):
|
||||||
with step('Open profile settings and check name, bio and links'):
|
with step('Open profile settings and check name, bio and links'):
|
||||||
profile_settings = main_screen.left_panel.open_settings().left_panel.open_profile_settings()
|
profile_settings = main_screen.left_panel.open_settings().left_panel.open_profile_settings()
|
||||||
|
|
Loading…
Reference in New Issue