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
avatar.click()// set focus (important for the keys interaction to take action)
124
+
assert.strictEqual(getEventsCount(),++eventCounter,"Avatar group 'click' event only fires once per mouse click interaction - Avatar");
125
+
avatar.keys('Enter');
126
+
assert.strictEqual(getEventsCount(),++eventCounter,"Avatar group 'click' event only fires once per keyboard 'Enter' interaction - Avatar");
127
+
avatar.keys('Space');
128
+
assert.strictEqual(getEventsCount(),++eventCounter,"Avatar group 'click' event only fires once per keyboard 'Space' interaction - Avatar");
129
+
130
+
overflowButton.click()// set focus (important for the keys interaction to take action)
131
+
assert.strictEqual(getEventsCount(),++eventCounter,"Avatar group 'click' event only fires once per mouse click interaction - Overflow Button");
132
+
overflowButton.keys('Enter');
133
+
assert.strictEqual(getEventsCount(),++eventCounter,"Avatar group 'click' event only fires once per keyboard 'Enter' interaction - Overflow Button");
134
+
overflowButton.keys('Space');
135
+
assert.strictEqual(getEventsCount(),++eventCounter,"Avatar group 'click' event only fires once per keyboard 'Space' interaction - Overflow Button");
136
+
137
+
avatarGroupTypeGroup.click()// set focus (important for the keys interaction to take action)
138
+
assert.strictEqual(getEventsCount(),++eventCounter,"Avatar group 'click' event only fires once per mouse click interaction - Avatar Group type Group");
139
+
avatarGroupTypeGroup.keys('Enter');
140
+
assert.strictEqual(getEventsCount(),++eventCounter,"Avatar group 'click' event only fires once per keyboard 'Enter' interaction - Avatar Group type Group");
141
+
avatarGroupTypeGroup.keys('Space');
142
+
assert.strictEqual(getEventsCount(),++eventCounter,"Avatar group 'click' event only fires once per keyboard 'Space' interaction - Avatar Group type Group");
0 commit comments