I'm trying to automate a sign up scenario. In sign up form, I have an email address field which is unique.
I'm using this code:
cy.get('#e_mail',{timeout:10000}).type('mpataz.tsc+1@gmail.com')
In next run am change the value in the email to be +2 and so on in each run.
Is there a way to make the value increment automatically in each run?