mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
973 B
35 lines
973 B
9 months ago
|
import { Page } from '@playwright/test';
|
||
|
import BasePage from '../Base';
|
||
|
import { ProjectsPage } from '../ProjectsPage';
|
||
|
import { expect } from '@playwright/test';
|
||
|
|
||
|
export class SAMLLoginPage extends BasePage {
|
||
|
readonly projectsPage: ProjectsPage;
|
||
|
|
||
|
constructor(rootPage: Page) {
|
||
|
super(rootPage);
|
||
|
this.projectsPage = new ProjectsPage(rootPage);
|
||
|
}
|
||
|
|
||
|
async goto(title = 'test') {
|
||
|
// reload page to get latest app info
|
||
|
await this.rootPage.reload();
|
||
|
await this.rootPage.goto('/#/signin/');
|
||
|
// click sign in with SAML
|
||
|
await this.rootPage.locator(`button:has-text("Sign in with ${title}")`).click();
|
||
|
}
|
||
|
|
||
|
get() {
|
||
|
return this.rootPage.locator('html');
|
||
|
}
|
||
|
|
||
|
async signIn({ email }: { email: string }) {
|
||
|
const signIn = this.get();
|
||
|
await signIn.locator('#userName').waitFor();
|
||
|
|
||
|
await signIn.locator(`#userName`).fill(email);
|
||
|
await signIn.locator(`#email`).fill(email);
|
||
|
await signIn.locator(`#btn-sign-in`).click();
|
||
|
}
|
||
|
}
|