Skip to content

Instantly share code, notes, and snippets.

@NicholasBoll
Last active March 28, 2018 06:04
Show Gist options
  • Save NicholasBoll/36283abfea1bf45513cb25e3379399d8 to your computer and use it in GitHub Desktop.
Save NicholasBoll/36283abfea1bf45513cb25e3379399d8 to your computer and use it in GitHub Desktop.
cy.wrap('foo').as('bar')
cy.get('@bar').then(subject => {
subject // JQuery<HTMLElement>
console.log(subject) // logs 'foo'
})
cy.get<string>('@bar').then(subject => {
subject // string
console.log(subject) // logs 'foo'
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment