Show system partition key value and add test cases

This commit is contained in:
Sung-Hyun Kang
2025-04-24 23:40:05 -05:00
parent 274c85d2de
commit 0c7985ce89
8 changed files with 48 additions and 9 deletions

View File

@@ -223,6 +223,9 @@ export class DocumentsTab {
documentsListPane: Locator;
documentResultsPane: Locator;
resultsEditor: Editor;
loadMoreButton: Locator;
filterInput: Locator;
filterButton: Locator;
constructor(
public frame: Frame,
@@ -234,6 +237,13 @@ export class DocumentsTab {
this.documentsListPane = this.locator.getByTestId("DocumentsTab/DocumentsPane");
this.documentResultsPane = this.locator.getByTestId("DocumentsTab/ResultsPane");
this.resultsEditor = new Editor(this.frame, this.documentResultsPane.getByTestId("EditorReact/Host/Loaded"));
this.loadMoreButton = this.documentsListPane.getByTestId("DocumentsTab/LoadMore");
this.filterInput = this.documentsFilter.getByTestId("DocumentsTab/FilterInput");
this.filterButton = this.documentsFilter.getByTestId("DocumentsTab/ApplyFilter");
}
async setFilter(text: string) {
await this.filterInput.fill(text);
}
}