Skip to content

v1.1.0

Compare
Choose a tag to compare
@dmtrKovalenko dmtrKovalenko released this 29 Nov 15:15
· 245 commits to main since this release

1.1.0 (2020-11-29)

Features

  • position option for cy.realClick and cy.realhover (816a668)

It allows to make clicks on any position relative to any element.

cy.realClick({ position: "topLeft" })
cy.realClick({ x: 10, y: 10 }) 

Screen Recording 2020-11-29 at 17 00 07

  • More keycode definitions for cy.realPress. From now its possible to use both Cypress and Puppeteer keys.
cy.realPress("Escape")
cy.realPress("ArrowUp")
// the same as 
cy.realPress("{esc}")
cy.realPress("{uparrow}")

Bugfixes

  • Remove global console.logs 🤦‍♂️🤦‍♀️🙈
  • Fix log message for cy.realType