Skip to content

Commit

Permalink
Minor update: remove unused import and locator
Browse files Browse the repository at this point in the history
  • Loading branch information
rwood-moz committed Jan 28, 2025
1 parent 87c042b commit 78a826f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test/e2e/pages/booking-page.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { expect } from '@playwright/test';
import { type Page, type Locator } from '@playwright/test';
import { APPT_PROD_MY_SHARE_LINK, APPT_PROD_SHORT_SHARE_LINK_PREFIX, APPT_PROD_LONG_SHARE_LINK_PREFIX } from '../const/constants';
import { DashboardPage } from './dashboard-page';

export class BookingPage {
readonly page: Page;
Expand All @@ -17,7 +16,6 @@ export class BookingPage {
readonly bookSelectionBookBtn: Locator;
readonly requestSentTitleText: Locator;
readonly requestSentAvailabilityText: Locator;
readonly requestSentBookingSlot: Locator;
readonly requestSentCloseBtn: Locator;

constructor(page: Page) {
Expand All @@ -34,7 +32,6 @@ export class BookingPage {
this.bookSelectionBookBtn = this.page.getByRole('button', { name: 'Book' });
this.requestSentTitleText = this.page.getByText('Booking request sent');
this.requestSentAvailabilityText = this.page.getByText("'s Availability");
this.requestSentBookingSlot = this.page.locator('.todo');
this.requestSentCloseBtn = this.page.getByRole('button', { name: 'Close' });
}

Expand Down

0 comments on commit 78a826f

Please sign in to comment.