Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.d.ts 857B

12345678910111213141516171819
  1. /// <reference types="webdriverio/webdriverio-core" />
  2. /// <reference types="webdriverio" />
  3. /// <reference types="@wdio/cucumber-framework" />
  4. export default class Interception {
  5. url: string;
  6. filterOptions: WebdriverIO.MockFilterOptions;
  7. browser: WebdriverIO.BrowserObject;
  8. respondOverwrites: {
  9. overwrite?: WebdriverIO.MockOverwrite;
  10. params?: WebdriverIO.MockResponseParams;
  11. sticky?: boolean;
  12. errorReason?: string;
  13. }[];
  14. matches: WebdriverIO.Matches[];
  15. constructor(url: string, filterOptions: import("webdriverio").MockFilterOptions | undefined, browser: WebdriverIO.BrowserObject);
  16. get calls(): WebdriverIO.Matches[] | Promise<WebdriverIO.Matches[]>;
  17. waitForResponse({ timeout, interval, timeoutMsg, }?: WebdriverIO.WaitForOptions): Promise<boolean>;
  18. }
  19. //# sourceMappingURL=index.d.ts.map