it('getByPlaceholder works with within', () => {
    cy.getByPlaceholder('Name').first().should('have.attr', 'id', 'input1');
    cy.getByPlaceholder('Name').eq(1).should('have.attr', 'id', 'input2');

    cy.get('#B').within(() => {