You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix the Legal Clusters view where users will only see clusters associated with a device type and not just enabled clusters which is wrong (#1573)
- Use the device types on the selected endpoint to figure out the device type clusters and then only show those clusters in the UI.
- The Legal clusters UI view will also not allow users to enable/disable non compliant clusters and also not show non compliant clusters.
- Adding cypress tests for filters of legal and enabled clusters
- Add more tests where the clusters are check for enablement when clicking on the client and server checkboxes
- Github: ZAP#316
.should('have.attr','aria-checked','false')// Even when clicking on the client checkbox it should not be enabled because of legal cluster filter setting does not allow non Device type clusters to be enabled.
.should('have.attr','aria-checked','true')// when clicking on the server checkbox it should be enabled because of legal cluster filter setting allows it to be selected
.should('have.attr','aria-checked','true')// when clicking on the server checkbox it should be enabled because of legal cluster filter setting allows it to be selected
.should('have.attr','aria-checked','false')// Even when clicking on the client checkbox it should not be enabled because of legal cluster filter setting does not allow non Device type clusters to be enabled.
98
+
})
99
+
}
100
+
101
+
// Basic for Zigbee is legal and should show up
102
+
// Identify for Matter is legal and should show up
0 commit comments