Skip to content

Commit

Permalink
chore: added test for CourseOverview
Browse files Browse the repository at this point in the history
  • Loading branch information
UzaeirAzhar committed Sep 19, 2024
1 parent b8935aa commit 38ab43c
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.playwright.practice.tests.integration;

import org.junit.jupiter.api.Test;

import com.microsoft.playwright.BrowserContext;
import com.playwright.practice.helper.CourseOverviewHelper;

public class CourseOverviewTest extends BaseTest {
@Test
public void roomOverviewTest() {
BrowserContext teacherContext = createNewContext();
CourseOverviewHelper.loginAndNavigateToCourseOverview(page, teacherContext, config.getUrl(),
config.getTeacherEmail(),
config.getTeacherPassword());
}
}

0 comments on commit 38ab43c

Please sign in to comment.