mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 13:56:56 +00:00
21 lines
476 B
TypeScript
21 lines
476 B
TypeScript
import BasePage from '../../../Base';
|
|
import { ToolbarPage } from './index';
|
|
import { expect } from '@playwright/test';
|
|
|
|
export class ToolbarSearchDataPage extends BasePage {
|
|
readonly toolbar: ToolbarPage;
|
|
|
|
constructor(toolbar: ToolbarPage) {
|
|
super(toolbar.rootPage);
|
|
this.toolbar = toolbar;
|
|
}
|
|
|
|
get() {
|
|
return this.rootPage.getByTestId('search-data-input');
|
|
}
|
|
|
|
async verify(query: string) {
|
|
expect(await this.get().inputValue()).toBe(query);
|
|
}
|
|
}
|