From 83a6881d9862aa59851b5c20c2d5c06b5ac7deee Mon Sep 17 00:00:00 2001 From: Jan Molak <1089173+jan-molak@users.noreply.github.com> Date: Tue, 3 Oct 2023 00:36:56 +0100 Subject: [PATCH] docs(playwright): added classes to the right docs category --- .../screenplay/models/PlaywrightBrowsingSessionWithBrowser.ts | 3 +++ .../src/screenplay/models/PlaywrightBrowsingSessionWithPage.ts | 3 +++ 2 files changed, 6 insertions(+) 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,