mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 12:46:49 +00:00
17 lines
370 B
TypeScript
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"]`);
|
|
}
|
|
}
|