diff --git a/packages/eui/src/components/tool_tip/tool_tip.spec.tsx b/packages/eui/src/components/tool_tip/tool_tip.spec.tsx
index ac358943eca..91f2afd6ccf 100644
--- a/packages/eui/src/components/tool_tip/tool_tip.spec.tsx
+++ b/packages/eui/src/components/tool_tip/tool_tip.spec.tsx
@@ -73,7 +73,7 @@ describe('EuiToolTip', () => {
describe('Escape key', () => {
it('hides the tooltip when rendered by itself', () => {
- cy.realMount(
+ cy.mount(
Show tooltip
@@ -100,7 +100,7 @@ describe('EuiToolTip', () => {
) : null;
};
- cy.realMount(
+ cy.mount(
@@ -111,7 +111,7 @@ describe('EuiToolTip', () => {
);
cy.get('[data-test-subj="tool_tip"]').should('not.exist');
- cy.repeatRealPress('Tab', 2);
+ cy.get('[data-test-subj="tool_tip_trigger"]').focus();
cy.get('[data-test-subj="tool_tip"]').should('exist');
cy.realPress('Escape');
@@ -137,7 +137,7 @@ describe('EuiToolTip', () => {
) : null;
};
- cy.realMount(
+ cy.mount(
@@ -148,7 +148,7 @@ describe('EuiToolTip', () => {
);
cy.get('[data-test-subj="tool_tip"]').should('not.exist');
- cy.repeatRealPress('Tab', 2);
+ cy.get('[data-test-subj="tool_tip_trigger"]').focus();
cy.get('[data-test-subj="tool_tip"]').should('exist');
cy.realPress('Escape');
@@ -188,7 +188,7 @@ describe('EuiToolTip', () => {
);
};
- cy.realMount(
+ cy.mount(
@@ -199,7 +199,7 @@ describe('EuiToolTip', () => {
);
cy.get('[data-test-subj="tool_tip"]').should('not.exist');
- cy.realPress('Tab');
+ cy.get('[data-test-subj="tool_tip_trigger"]').focus();
cy.get('[data-test-subj="tool_tip"]').should('exist');
cy.realPress('Escape');