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
See PR #33158 and #33149 for examples and discussion.
OwncloudPage has a waitTillPageIsLoaded() method that looks for a .loading indicator to become invisible. On ordinary files pages there is no such indicator, and FilesPageBasic extends OwncloudPage and implements a waitTillPageIsLoaded() that works on files-type-pages.
Some other pages directly extend OwncloudPage and so get the "base" waitTillPageIsLoaded()
When the comments app is enabled, the comments panel happens to have a .loading indicator - so the "base" waitTillPageIsLoaded() just happens to "work" by checking that page element.
review each page object that extends OwncloudPage and ensure that either it implements its own appropriate waitTillPageIsLoaded() or that the base one from OwncloudPage is relevant.
The text was updated successfully, but these errors were encountered:
GitMate.io thinks possibly related issues are #22485 (test), #22492 (test), #31579 (test), #32559 (acceptance tests - stop uploading when receiving an error), and #31516 (Acceptance test coding standard changes).
See PR #33158 and #33149 for examples and discussion.
OwncloudPage has a
waitTillPageIsLoaded()
method that looks for a.loading
indicator to become invisible. On ordinary files pages there is no such indicator, and FilesPageBasic extends OwncloudPage and implements awaitTillPageIsLoaded()
that works on files-type-pages.Some other pages directly extend OwncloudPage and so get the "base"
waitTillPageIsLoaded()
When the comments app is enabled, the comments panel happens to have a
.loading
indicator - so the "base"waitTillPageIsLoaded()
just happens to "work" by checking that page element.waitTillPageIsLoaded()
or that the base one from OwncloudPage is relevant.The text was updated successfully, but these errors were encountered: