From 5251884b1a3c06bc11131008d67541a09db5c42f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 21:23:26 -0800 Subject: [PATCH] Bump vuetify from 3.4.6 to 3.4.7 in /src/dispatch/static/dispatch (#4118) * Bump vuetify from 3.4.6 to 3.4.7 in /src/dispatch/static/dispatch Bumps [vuetify](https://github.com/vuetifyjs/vuetify/tree/HEAD/packages/vuetify) from 3.4.6 to 3.4.7. - [Release notes](https://github.com/vuetifyjs/vuetify/releases) - [Commits](https://github.com/vuetifyjs/vuetify/commits/v3.4.7/packages/vuetify) --- updated-dependencies: - dependency-name: vuetify dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * Adding first to qualify project name * Change VSelect locators to combobox role and remove name for filterText --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: David Whittaker Co-authored-by: Will Sheldon <114631109+wssheldon@users.noreply.github.com> --- src/dispatch/static/dispatch/package-lock.json | 10 +++++----- tests/static/e2e/pages/report-incident-page.ts | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/dispatch/static/dispatch/package-lock.json b/src/dispatch/static/dispatch/package-lock.json index dc655eb0b9e8..264a64a3b4ae 100644 --- a/src/dispatch/static/dispatch/package-lock.json +++ b/src/dispatch/static/dispatch/package-lock.json @@ -6693,9 +6693,9 @@ } }, "node_modules/vuetify": { - "version": "3.4.6", - "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-3.4.6.tgz", - "integrity": "sha512-Zp6BjKkNcnyHlOmr01Y/Rc4d686PORO+hcpfM76qRaDMIU4H1GnP0JIF3jwxI1q3Uj/2bHKLwn81oCLJZd+8sg==", + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-3.4.7.tgz", + "integrity": "sha512-K++yer5H94Yi/uzgKDOTYRPA9qipVntomEohRsegfAnRqmFyw2x9clHVEoTRa/Fvk3nkHti0zn90Mp7mSUwVnw==", "engines": { "node": "^12.20 || >=14.13" }, @@ -6705,10 +6705,10 @@ }, "peerDependencies": { "typescript": ">=4.7", - "vite-plugin-vuetify": "^1.0.0-alpha.12", + "vite-plugin-vuetify": ">=1.0.0-alpha.12", "vue": "^3.3.0", "vue-i18n": "^9.0.0", - "webpack-plugin-vuetify": "^2.0.0-alpha.11" + "webpack-plugin-vuetify": ">=2.0.0-alpha.11" }, "peerDependenciesMeta": { "typescript": { diff --git a/tests/static/e2e/pages/report-incident-page.ts b/tests/static/e2e/pages/report-incident-page.ts index 66ccd62e9a1c..744ea90ad6ee 100644 --- a/tests/static/e2e/pages/report-incident-page.ts +++ b/tests/static/e2e/pages/report-incident-page.ts @@ -21,9 +21,9 @@ export class ReportIncidentPage { this.reportHeader = page.getByText("Report Incident").first() this.titleTextBox = page.getByLabel("Title", { exact: true }) this.descriptionTextBox = page.getByLabel("Description", { exact: true }) - this.projectDropdown = page.getByRole("button", { name: "Project" }) - this.typeDropdown = page.getByRole("button", { name: "Type" }) - this.priorityDropdown = page.getByRole("button", { name: "Priority" }) + this.projectDropdown = page.getByRole("combobox").filter({ hasText: "Project" }) + this.typeDropdown = page.getByRole("combobox").filter({ hasText: "Type" }) + this.priorityDropdown = page.getByRole("combobox").filter({ hasText: "Priority" }) this.tagsDropdown = page.getByRole("combobox").filter({ hasText: "Tags" }).locator("i") this.submitButton = page.getByRole("button", { name: "Submit" }) this.loadMore = page.getByText("Load More") @@ -74,7 +74,7 @@ export class ReportIncidentPage { async selectProject(project: string) { await this.projectDropdown.click() - await this.page.getByText(project, { exact: true }).click() + await this.page.getByText(project, { exact: true }).first().click() } async selectType(type: string) {