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

How to fix it

  1. Wait for the real enabling condition before typing: `cy.get(sel).should('not.be.disabled')`
  2. If the field is meant to stay readonly here, that's a test-flow design issue, not something to force through with `{ force: true }`