https://cypress.io logo
tried with cy.then like this, and same error.. ``...
# e2e-testing
r
tried with cy.then like this, and same error..
Copy code
Then('I set {string} field {string} to {string}', (page: string, locator: string, value: string) => {
   // searchGuestPage.getMGMRewards().type(value);
  cy.then(()=>{
  // eslint-disable-next-line no-eval
  eval(`${page}Page.get${locator}().type(${value})`);
  }
  );