blob: 5a40bf1b118ecb72644ef10441b72bb88163b3ff [file]
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { expect } from '@playwright/test';
import { NoteTocPage } from './note-toc-page';
export class NoteTocPageUtil {
private noteTocPage: NoteTocPage;
constructor(noteTocPage: NoteTocPage) {
this.noteTocPage = noteTocPage;
}
async verifyTocPanelOpens(): Promise<void> {
await this.noteTocPage.clickTocToggle();
await expect(this.noteTocPage.tocPanel).toBeVisible();
}
async verifyTocPanelCloses(): Promise<void> {
await this.noteTocPage.clickTocClose();
await expect(this.noteTocPage.tocPanel).not.toBeVisible();
}
}