HTML ```html <mat-tab data-testid="new-tab-title">...
# e2e-testing
r
HTML
Copy code
html
<mat-tab data-testid="new-tab-title">
```Does anyone know how I can fix this?

E2E:
```ts
describe('Restaurant orders overview', () => {
    beforeEach(() => {
        initializeDesktop();
        login();
        addNewRestaurantProduct(1)
        cy.visitPage('orders', 'restaurant-orders');
    });

    describe('New orders', () => {
        it('Should have at least one new order', () => {
            cy.findAllByTestId('new-tab-title');
        });
    });
Does anyone know why it can't find the Cypress test id?