What Cypress version is the most complete? #32433
-
Hello, What Cypress version is the most complete? Has the most commands installed by default? kr |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
Without any other context for this question, the answer about the best version of Cypress to use would be the latest version. See https://docs.cypress.io/app/references/troubleshooting#Update-Cypress There are two types of command:
The changes for each version of Cypress are listed in the changelog https://docs.cypress.io/app/references/changelog and the tasks needed to migrate from one version to the next are listed in the migration guide https://docs.cypress.io/app/references/migration-guide. Probably the latest version would have the greatest number of commands, however what is important to you is probably the availability of an individual command not the exact numerical count of the number of commands. |
Beta Was this translation helpful? Give feedback.
@PeterN1968
.move()
is not provided by Cypress.The npm package @4tw/cypress-drag-drop is where
.move()
comes from.I don't have experience with this package, however I can read that the latest version @4tw/[email protected] is compatible with Cypress 2 - 14, which does not include Cypress
15.1.0
. If you try to install@4tw/[email protected]
and[email protected]
using npm you should at least get a warning, if not a fatal error. So I'm not surprised that it doesn't work for you.@4tw/cypress-drag-drop@^1.3.1
that you suggest, would be a bad choice, since this resolves to @4tw/cypress-drag-drop@^1.8.1 and that version covers only Cypress^2.1.0
-^8.0.0
.Another user opened 4teamw…