Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix typo in cy.realMouseMove example
The example for `cy.realMouseMove` was using `cy,realMouseUp`
  • Loading branch information
drecali authored Feb 15, 2022
commit 1d56432015c55f841d667cd559daa9abb73eaf8d
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ cy.get("sector").realMouseMove(x, y, options);
Example:

```js
cy.get("sector").realMouseUp(50, 50, { position: "center" }); // moves by 50px x and y from center of sector
cy.get("sector").realMouseMove(50, 50, { position: "center" }); // moves by 50px x and y from center of sector
```

Options:
Expand Down