https://cypress.io logo
I think you want something like this. It can proba...
# help
l
I think you want something like this. It can probably be written cleaner; apologies 🙂
Copy code
let myArray = []
cy.get('option').each((x) => {
  cy.wrap(x).invoke('val').then((val) => myArray.push(val))
})