Unify workspace dropdowns; Update layouts (#458)
Unified Account and Workspace drop-downs; Layout updates, now header lives within the PageBody component; Sidebars now use floating variant
This commit is contained in:
committed by
GitHub
parent
ca585e09be
commit
4bc8448a1d
@@ -31,8 +31,17 @@ export class AuthPageObject {
|
||||
}
|
||||
|
||||
async signOut() {
|
||||
await this.page.click('[data-test="account-dropdown-trigger"]');
|
||||
await this.page.click('[data-test="account-dropdown-sign-out"]');
|
||||
const trigger = this.page.locator(
|
||||
'[data-test="workspace-dropdown-trigger"], [data-test="account-dropdown-trigger"]',
|
||||
);
|
||||
|
||||
await trigger.click();
|
||||
|
||||
const signOutButton = this.page.locator(
|
||||
'[data-test="workspace-sign-out"], [data-test="account-dropdown-sign-out"]',
|
||||
);
|
||||
|
||||
await signOutButton.click();
|
||||
}
|
||||
|
||||
async signIn(params: { email: string; password: string }) {
|
||||
|
||||
Reference in New Issue
Block a user