diff --git a/test/ui-test/src/screens/StatusCommunityScreen.py b/test/ui-test/src/screens/StatusCommunityScreen.py index 827757fb4d1..72afac5af0b 100644 --- a/test/ui-test/src/screens/StatusCommunityScreen.py +++ b/test/ui-test/src/screens/StatusCommunityScreen.py @@ -241,7 +241,6 @@ def verify_category_contains_channels(self, community_category_name, community_c def open_edit_community_by_community_header(self): click_obj_by_name(CommunityScreenComponents.COMMUNITY_HEADER_BUTTON.value) - time.sleep(0.5) # wait for UI to load click_obj_by_name(CommunitySettingsComponents.EDIT_COMMUNITY_BUTTON.value) def change_community_name(self, new_community_name: str): @@ -265,7 +264,6 @@ def change_community_color(self, new_community_color: str): def save_community_changes(self): click_obj_by_name(CommunitySettingsComponents.SAVE_BUTTON.value) - time.sleep(0.5) def edit_community(self, new_community_name: str, new_community_description: str, new_community_color: str): self.open_edit_community_by_community_header() diff --git a/test/ui-test/testSuites/suite_communities/shared/scripts/community_names.py b/test/ui-test/testSuites/suite_communities/shared/scripts/community_names.py index 9400410dd7d..62a4759d297 100644 --- a/test/ui-test/testSuites/suite_communities/shared/scripts/community_names.py +++ b/test/ui-test/testSuites/suite_communities/shared/scripts/community_names.py @@ -55,10 +55,10 @@ # Community Edit: communitySettings_EditCommunity_ScrollView = {"container": statusDesktop_mainWindow, "objectName": "communityEditPanelScrollView", "type": "StatusScrollView", "visible": True} -communitySettings_EditCommunity_Name_Input = {"container": communitySettings_EditCommunity_ScrollView, "objectName": "editCommunityNameInput", "type": "TextEdit"} -communitySettings_EditCommunity_Description_Input = {"container": communitySettings_EditCommunity_ScrollView, "objectName": "editCommunityDescriptionInput", "type": "TextEdit"} +communitySettings_EditCommunity_Name_Input = {"container": communitySettings_EditCommunity_ScrollView, "objectName": "editCommunityNameInput", "type": "TextEdit", "visible": True} +communitySettings_EditCommunity_Description_Input = {"container": communitySettings_EditCommunity_ScrollView, "objectName": "editCommunityDescriptionInput", "type": "TextEdit", "visible": True} communitySettings_EditCommunity_ColorPicker_Button = {"container": communitySettings_EditCommunity_ScrollView, "objectName": "editCommunityColorPicker", "type": "CommunityColorPicker", "visible": True} # Community color popup: -communitySettings_ColorPanel_HexColor_Input = {"container": statusDesktop_mainWindow_overlay, "objectName": "communityColorPanelHexInput", "type": "TextEdit"} +communitySettings_ColorPanel_HexColor_Input = {"container": statusDesktop_mainWindow_overlay, "objectName": "communityColorPanelHexInput", "type": "TextEdit", "visible": True} communitySettings_SaveColor_Button = {"container": statusDesktop_mainWindow_overlay, "objectName": "communityColorPanelSelectColorButton", "type": "StatusButton", "visible": True} diff --git a/test/ui-test/testSuites/suite_communities/tst_communityFlows/test.feature b/test/ui-test/testSuites/suite_communities/tst_communityFlows/test.feature index 590a9153bac..f7f6168710a 100644 --- a/test/ui-test/testSuites/suite_communities/tst_communityFlows/test.feature +++ b/test/ui-test/testSuites/suite_communities/tst_communityFlows/test.feature @@ -84,7 +84,6 @@ Feature: Status Desktop community When the admin deletes category named "test-category" Then the category named "test-category" is missing - @mayfail Scenario Outline: The admin edits a community name, description and color separately When the admin changes the community name to "" Then the community overview name is "" @@ -98,7 +97,6 @@ Feature: Status Desktop community | new_community_name | new_community_description | new_community_color | | myCommunityNamedChanged | Cool new description 123 | #ff0000 | - @mayfail Scenario Outline: The admin edits a community name, description and color When the admin renames the community to "" and description to "" and color to "" Then the community overview name is ""