@wdio/browserstack-service 9.35.3 → 9.36.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,6 +16,8 @@ declare class _AccessibilityHandler {
16
16
  * cucumber goes through beforeScenario/afterScenario instead.
17
17
  */
18
18
  private static readonly TEST_HOOK_FRAMEWORKS;
19
+ private static readonly PRE_TEST_SCAN_FRAMEWORKS;
20
+ private _testContextSeen;
19
21
  private _platformA11yMeta;
20
22
  private _caps;
21
23
  private _suiteFile?;
@@ -41,6 +43,8 @@ declare class _AccessibilityHandler {
41
43
  */
42
44
  onSessionReload(oldSessionId: string, newSessionId: string): void;
43
45
  before(sessionId: string): Promise<void>;
46
+ private get hasNoParent();
47
+ private supportsPreTestWindow;
44
48
  beforeTest(suiteTitle: string | undefined, test: Frameworks.Test): Promise<void>;
45
49
  afterTest(suiteTitle: string | undefined, test: Frameworks.Test): Promise<void>;
46
50
  /**