Skip to content

Commit

Permalink
e2e: fix app selector
Browse files Browse the repository at this point in the history
  • Loading branch information
saw-jan committed Feb 24, 2022
1 parent 2a59f87 commit dd652ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/support/page/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class RuntimePage {
async navigateToApp({ name }: { name: string }): Promise<void> {
const { page } = this.actor
await page.locator('#_appSwitcherButton').click()
await page.locator(`a[href="#/${name}"]`).click()
await page.locator(`ul.applications-list a[href$="/${name}"]`).click()
}

async logout(): Promise<void> {
Expand Down

0 comments on commit dd652ae

Please sign in to comment.