text/cypress
Julius Härtl f7596d29f3
Add tests for direct editing and cleanup dead code
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-11-09 12:59:54 +01:00
..
e2e Add tests for direct editing and cleanup dead code 2022-11-09 12:59:54 +01:00
fixtures rename cypress attachment tests, add one for media upload 2022-09-06 14:44:54 +02:00
support Add tests for direct editing and cleanup dead code 2022-11-09 12:59:54 +01:00
utils test: try to make image test retryable 2022-06-30 14:35:24 -03:00
.env Add public share page tests 2020-01-04 13:37:02 +01:00
.eslintrc.json (#2184): add eslint-plugin-cypress 2022-03-14 11:38:29 -03:00
Dockerfile Fix docker container for local cypress tests 2022-06-30 17:16:05 +02:00
README.md Replace MenuBubble with menu bar entry for links 2022-10-24 09:57:16 +02:00
docker-compose.yml Fix docker container for local cypress tests 2022-06-30 17:16:05 +02:00
entrypoint.sh Fix docker container for local cypress tests 2022-06-30 17:16:05 +02:00
runLocal.sh Fix docker container for local cypress tests 2022-06-30 17:16:05 +02:00

README.md

Cypress tests

There are some custom cypress commands available making it easier to write tests, for example you can get the editor content and insert text by using

cy.getContent()
    .type('some test')

Available custom commands

Command Function Parameters
login Log in user user, password
logout Logout
nextcloudCreateUser Create a new user user, password
nextcloudUpdateUser Update user setting user, password, key, value
nextcloudDeleteUser Delete user user
uploadFile Upload file fileName, mimeType, target
createFile Create file target, content, mimeType
moveFile Move a file path, destinationPath
copyFile Copy file path, destinationPath
createFolder Create a folder dirName
shareFileToUser Share a file with user userId, password, path, targetUserId
openFile Open file in Viewer / Editor fileName, clickParams
getFile Get file list element of file fileName
deleteFile Remove a file fileName
reloadFileList Refresh the file list
getEditor Get TipTap Editor element
getContent Get editor content
clearContent Clear the editor content
getMenu Get editor menu bar
getMenuEntry Same as getActionEntry but also searches the overflow menu name
getSubmenuEntry Open parent menu and then return sub menu entry parent, name
getActionEntry Get menu entry name
getActionSubEntry Get submenu entry (after menu clicked) name
openWorkspace Open workspace and return Editor content