We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0258837 + 672a46f commit 9b70a65Copy full SHA for 9b70a65
1 file changed
tests/playwright/support/sections/FilesListPage.ts
@@ -106,7 +106,11 @@ export class FilesListPage {
106
107
/** Click a column header's sort button to toggle sorting by that column. */
108
async sortByColumn(name: string): Promise<void> {
109
+ const saved = this.page.waitForResponse((r) => r.request().method() === 'PUT' && r.url().includes('/index.php/apps/files/api/v1/views'))
110
+
111
await this.getColumnHeader(name).getByRole('button', { name }).click()
112
113
+ await saved
114
}
115
116
/** The per-row selection checkboxes. */
0 commit comments