diff --git a/packages/playwright/src/screenplay/models/PlaywrightBrowsingSessionWithBrowser.ts b/packages/playwright/src/screenplay/models/PlaywrightBrowsingSessionWithBrowser.ts index 37a87144a1d..0e4171616b4 100644 --- a/packages/playwright/src/screenplay/models/PlaywrightBrowsingSessionWithBrowser.ts +++ b/packages/playwright/src/screenplay/models/PlaywrightBrowsingSessionWithBrowser.ts @@ -5,6 +5,9 @@ import type { PlaywrightOptions } from '../../PlaywrightOptions'; import { SerenitySelectorEngines } from '../../selector-engines'; import { PlaywrightBrowsingSession } from './PlaywrightBrowsingSession'; +/** + * @group Models + */ export class PlaywrightBrowsingSessionWithBrowser extends PlaywrightBrowsingSession { private readonly serenitySelectorEngines = new SerenitySelectorEngines(); diff --git a/packages/playwright/src/screenplay/models/PlaywrightBrowsingSessionWithPage.ts b/packages/playwright/src/screenplay/models/PlaywrightBrowsingSessionWithPage.ts index d45f6989887..d81e0f1cdc5 100644 --- a/packages/playwright/src/screenplay/models/PlaywrightBrowsingSessionWithPage.ts +++ b/packages/playwright/src/screenplay/models/PlaywrightBrowsingSessionWithPage.ts @@ -6,6 +6,9 @@ import type { PlaywrightOptions } from '../../PlaywrightOptions'; import { PlaywrightBrowsingSession } from './PlaywrightBrowsingSession'; import { PlaywrightPage } from './PlaywrightPage'; +/** + * @group Models + */ export class PlaywrightBrowsingSessionWithPage extends PlaywrightBrowsingSession { constructor( protected readonly page: playwright.Page,