import { BaseComponent } from '@/shared/base/BaseComponent';

export class SingleSelect extends BaseComponent {
  private readonly input = this.host.locator('select');

  async select(option: string): Promise<void> {
    await this.input.selectOption(option);
  }
}
