When I search for the button by the common method it returns 2 results
cy.get('[data-testid="cc-button__element"] > [data-testid="cc-button__text"]')
However, when I do the search with cypress's own tool, it does locate it quickly and returns 1 result.
cy.get('.block > [data-testid="cc-button"] > [data-testid="cc-button__element"]')
I know that this is valid, however, I want to do it by the traditional method so that later if there are changes it does not affect my button search methods.
If the text Continue occurs just once in your webpage you can use contains to find it and click it.
cy.contains('Continue').click()