Cypress error cy.type() failed because this element is disabled
Cypress is correctly refusing to type into a disabled field. This is usually a sign the app hasn't enabled it yet at this point in the flow.
Why this happens
- The test reached this step before the app's own logic actually enables the field
How to fix it
- Wait for the real enabling condition before typing: `cy.get(sel).should('not.be.disabled')`
- If the field is meant to stay readonly here, that's a test-flow design issue, not something to force through with `{ force: true }`