多维表格
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.
 
 
 
 
 
 

19 lines
493 B

import { ToolbarActionsPage } from '.';
import { ErdBasePage } from '../../../commonBase/Erd';
export class ToolbarActionsErdPage extends ErdBasePage {
readonly toolbarActions: ToolbarActionsPage;
constructor(toolbarActions: ToolbarActionsPage) {
super(toolbarActions.rootPage);
this.toolbarActions = toolbarActions;
}
get() {
return this.rootPage.locator(`.erd-single-table-modal`);
}
async close() {
await this.get().locator('.nc-modal-close').click();
}
}