test(GroupChat): Broken tests updated
The create a group chat related objects have been updated according to new qml changes. Now these tests are working (if they don't work it is bc of mailserver reliability).
This commit is contained in:
parent
d0fc2db9bd
commit
03691ba4b1
|
@ -54,8 +54,8 @@ joinPublicChat_input = {"container": statusDesktop_mainWindow_overlay, "objectNa
|
|||
chat_name_PlaceholderText = {"container": statusDesktop_mainWindow_overlay, "text": "chat-name", "type": "PlaceholderText", "unnamed": 1, "visible": True}
|
||||
|
||||
# Create chat view:
|
||||
createChatView_contactsList = {"container": statusDesktop_mainWindow, "objectName": "tagSelectorUserList", "type": "ListView"}
|
||||
createChatView_confirmBtn = {"container": statusDesktop_mainWindow, "objectName": "createChatConfirmButton", "type": "StatusButton"}
|
||||
createChatView_contactsList = {"container": statusDesktop_mainWindow, "objectName": "createChatContactsList", "type": "StatusListView"}
|
||||
createChatView_confirmBtn = {"container": statusDesktop_mainWindow, "objectName": "inlineSelectorConfirmButton", "type": "StatusButton"}
|
||||
|
||||
# Members panel:
|
||||
chatView_chatMembers_ListView = {"container": statusDesktop_mainWindow, "objectName": "userListPanel", "type": "ListView"}
|
||||
|
|
|
@ -179,6 +179,7 @@ Item {
|
|||
}
|
||||
|
||||
StatusButton {
|
||||
objectName: "inlineSelectorConfirmButton"
|
||||
Layout.alignment: Qt.AlignVCenter
|
||||
enabled: (listView.count > 0)
|
||||
text: qsTr("Confirm")
|
||||
|
|
|
@ -111,6 +111,7 @@ Page {
|
|||
|
||||
StatusListView {
|
||||
id: contactsList
|
||||
objectName: "createChatContactsList"
|
||||
|
||||
Layout.fillWidth: true
|
||||
Layout.fillHeight: true
|
||||
|
|
Loading…
Reference in New Issue