@wdio/browserstack-service 9.33.0 → 9.33.2

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.
@@ -14,6 +14,7 @@ export default class AutomateModule extends BaseModule {
14
14
  onBeforeTest(args: Record<string, unknown>): Promise<void>;
15
15
  onAfterTest(args: Record<string, unknown>): Promise<void>;
16
16
  onAfterExecute(): Promise<void>;
17
+ private isAppAutomate;
17
18
  markSessionName(sessionId: string, sessionName: string, config: {
18
19
  user: string;
19
20
  key: string;
@@ -30,4 +30,5 @@ export default class BaseModule {
30
30
  * @param {Object} config - Configuration options
31
31
  */
32
32
  configure(binSessionId: string | null, platformIndex: number, client: SDKClient | null, config?: {}): void;
33
+ protected hasAppCapInFrameworkState(): boolean;
33
34
  }
@@ -12,6 +12,7 @@ export default class PercyModule extends BaseModule {
12
12
  */
13
13
  constructor(percyConfig: unknown);
14
14
  getModuleName(): string;
15
+ private isAppAutomateSession;
15
16
  onAfterCreate(args: Record<string, unknown>): Promise<void>;
16
17
  onBeforeTest(args: Record<string, unknown>): Promise<void>;
17
18
  onAfterTest(): Promise<void>;