We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18bd963 commit 418abd1Copy full SHA for 418abd1
1 file changed
packages/main/cypress/specs/Calendar.cy.tsx
@@ -69,7 +69,8 @@ describe("Calendar general interaction", () => {
69
70
cy.get("@calheader")
71
.find("[data-ui5-cal-header-btn-prev]")
72
- .as("prevBtn");
+ .as("prevBtn")
73
+ .should("have.attr", "tabindex", "0");
74
75
cy.get("@prevBtn")
76
.should("be.focused");
@@ -78,7 +79,8 @@ describe("Calendar general interaction", () => {
78
79
80
81
.find("[data-ui5-cal-header-btn-month]")
- .as("monthBtn");
82
+ .as("monthBtn")
83
+ .should("have.attr", "tabindex", "0");;
84
85
cy.get("@monthBtn")
86
0 commit comments