Cypress'te var, let ve const gibi değişkenlerin kullanımı vardır.
cy.get('.btn').then(($span) => {// value capture before button click and stored in constconstn=parseInt($span.text())cy.get('b').click().then(() => {// value capture after button click and stored in constconstm=parseInt($span.text())// comparisonexpect(n).to.eq(m) })})