You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scenario: public link (attempt 1, retried) # tests/e2e/cucumber/features/shares/link.feature:9
......
✔ And "Anonymous" creates the following resources # tests/e2e/cucumber/steps/ui/resources.ts:8
| resource | type |
| myfolder | folder |
| myfolder/child | folder |
✔ And "Anonymous" uploads the following resources in public link page # tests/e2e/cucumber/steps/ui/public.ts:91
| resource | type |
| PARENT | folder |
✔ And "Anonymous" moves the following resource using drag-drop # tests/e2e/cucumber/steps/ui/resources.ts:99
| resource | to |
| new-lorem.txt | SubFolder |
✔ And "Anonymous" copies the following resource using sidebar-panel # tests/e2e/cucumber/steps/ui/resources.ts:99
| resource | to |
| lorem.txt | myfolder |
✔ And "Anonymous" renames the following public link resources # tests/e2e/cucumber/steps/ui/public.ts:84
| resource | as |
| lorem.txt | lorem_new.txt |
| textfile.txt | textfile_new.txt |
✖ And "Anonymous" deletes the following resources from public link using batch action # tests/e2e/cucumber/steps/ui/public.ts:109
| resource | from |
| lorem.txt | myfolder |
| child | myfolder |
locator.waitFor: Timeout 30000ms exceeded.
Call log:
- waiting for locator('//*[@data-test-selection-resource-name="child"]//input[@type="checkbox"]') to be visible
at selectOrDeselectResources (/woodpecker/src/github.com/opencloud-eu/web/web/tests/e2e/support/objects/app-files/resource/actions.ts:606:66)
at async Module.deleteResource (/woodpecker/src/github.com/opencloud-eu/web/web/tests/e2e/support/objects/app-files/resource/actions.ts:868:13)
at async Public.delete (/woodpecker/src/github.com/opencloud-eu/web/web/tests/e2e/support/objects/app-files/page/public.ts:54:9)
at async processDelete (/woodpecker/src/github.com/opencloud-eu/web/web/tests/e2e/cucumber/steps/ui/resources.ts:305:9)
at async World.<anonymous> (/woodpecker/src/github.com/opencloud-eu/web/web/tests/e2e/cucumber/steps/ui/public.ts:112:5)
fail is due this step:
And "Anonymous" creates the following resources # tests/e2e/cucumber/steps/ui/resources.ts:8
| resource | type |
| myfolder | folder |
| myfolder/child | folder |
The test should have failed at this step because we were unable to create the child folder -> no MKCOL request on the network. I think the problem may be in the parent folder myfolder-> it is displayed in the interface, but we have not verified that MKCOL has been completed.
I found, when test opens myfolder -> new button is disabled and propfind didn't get 207.
test tries to create a subfolder when the parent folder has not been fully loaded.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
https://ci.opencloud.rocks/repos/6/pipeline/2933/122
fail is due this step:
The test should have failed at this step because we were unable to create the
childfolder -> noMKCOLrequest on the network. I think the problem may be in the parent foldermyfolder-> it is displayed in the interface, but we have not verified thatMKCOLhas been completed.