Skip to content

Releases: dmtrKovalenko/cypress-real-events

v1.1.0

29 Nov 15:15
Compare
Choose a tag to compare

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

v1.0.0

22 Nov 17:24
Compare
Choose a tag to compare

Initial release 🐣