Skip to content

Commit a0d2d86

Browse files
committed
fix: tests
1 parent da59fcd commit a0d2d86

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/suites/tenant/summary/ObjectSummary.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ export class ObjectSummary {
1616
private primaryKeys: Locator;
1717

1818
constructor(page: Page) {
19-
this.tree = page.locator('.object-summary__tree');
19+
this.tree = page.locator('.ydb-object-summary__tree');
2020
this.treeRows = page.locator('.ydb-tree-view');
21-
this.tabs = page.locator('.object-summary__tabs');
21+
this.tabs = page.locator('.ydb-object-summary__tabs');
2222
this.schemaViewer = page.locator('.schema-viewer');
2323
this.primaryKeys = page.locator('.schema-viewer__keys_type_primary');
2424
}
@@ -66,7 +66,7 @@ export class ObjectSummary {
6666
}
6767

6868
async clickTab(tabName: ObjectSummaryTab): Promise<void> {
69-
const tab = this.tabs.locator(`.object-summary__tab:has-text("${tabName}")`);
69+
const tab = this.tabs.locator(`.ydb-object-summary__tab:has-text("${tabName}")`);
7070
await tab.click();
7171
}
7272

0 commit comments

Comments
 (0)