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
assert.strictEqual(defaultSLot.getAttribute("tabindex"),"-1","Slot is not reachable via keyboard");
51
+
beforeBusyIndicator.click();
52
+
browser.keys("Tab");
53
+
assert.strictEqual($(browser.getActiveElement()).getAttribute("id"),busyIndicator.getAttribute("id"),"Correct element is focused with TAB");
54
+
55
+
browser.keys("Tab");
56
+
assert.strictEqual($(browser.getActiveElement()).getAttribute("id"),afterBusyIndicator.getAttribute("id"),"Correct element is focused with TAB");
57
+
58
+
browser.keys(["Shift","Tab"]);
59
+
assert.strictEqual($(browser.getActiveElement()).getAttribute("id"),busyIndicator.getAttribute("id"),"Correct element is focused with SHIFT + TAB");
60
+
61
+
browser.keys(["Shift","Tab"]);
62
+
assert.strictEqual($(browser.getActiveElement()).getAttribute("id"),beforeBusyIndicator.getAttribute("id"),"Correct element is focused with SHIFT + TAB");
63
+
});
64
+
65
+
it("test inactive indicator in dialog - correct element from default slot is focused",()=>{
0 commit comments