v1.1.0
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 })
- 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.log
s 🤦♂️🤦♀️🙈 - Fix log message for
cy.realType