Skip to content

Commit

Permalink
Bump vuetify from 3.4.6 to 3.4.7 in /src/dispatch/static/dispatch (#4118
Browse files Browse the repository at this point in the history
)

* 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] <[email protected]>

* Adding first to qualify project name

* Change VSelect locators to combobox role and remove name for filterText

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: David Whittaker <[email protected]>
Co-authored-by: Will Sheldon <[email protected]>
  • Loading branch information
3 people authored Dec 15, 2023
1 parent ecbffa1 commit 5251884
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions src/dispatch/static/dispatch/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions tests/static/e2e/pages/report-incident-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit 5251884

Please sign in to comment.