Files
nocodb/scripts/playwright/pages/Dashboard/Settings/Erd.ts
2022-11-03 16:24:18 +05:30

17 lines
370 B
TypeScript

import { SettingsPage } from ".";
import { ErdBasePage } from "../commonBase/Erd";
export class SettingsErdPage extends ErdBasePage {
readonly settings: SettingsPage;
constructor(settings: SettingsPage) {
super(settings.rootPage);
this.settings = settings;
}
get() {
return this.rootPage.locator(`[pw-data="nc-settings-subtab-ERD View"]`);
}
}