* add changes * add changes * add changes * add changes * Requested changes * Change way to grab element --------- Co-authored-by: gitstart-calcom <gitstart-calcom@users.noreply.github.com> Co-authored-by: gitstart-calcom <gitstart@users.noreply.github.com> Co-authored-by: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> Co-authored-by: Keith Williams <keithwillcode@gmail.com> Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
16 lines
571 B
TypeScript
16 lines
571 B
TypeScript
import { loginUser } from "../fixtures/regularBookings";
|
|
import { test } from "../lib/fixtures";
|
|
|
|
test.describe("Check availability tab in a event-type", () => {
|
|
test("Check availability in event type", async ({ eventTypePage, users }) => {
|
|
await loginUser(users);
|
|
await eventTypePage.goToEventTypesPage();
|
|
|
|
await eventTypePage.goToEventType("30 min");
|
|
await eventTypePage.goToTab("availability");
|
|
await eventTypePage.checkAvailabilityTab();
|
|
await eventTypePage.goToAvailabilityPage();
|
|
await eventTypePage.checkAvailabilityPage();
|
|
});
|
|
});
|