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.

constants.d.ts 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /// <reference types="webdriver" />
  2. import type { DefaultOptions } from '@wdio/config';
  3. export declare const DEFAULT_WIDTH = 1200;
  4. export declare const DEFAULT_HEIGHT = 900;
  5. export declare const DEFAULT_X_POSITION = 0;
  6. export declare const DEFAULT_Y_POSITION = 0;
  7. export declare const ELEMENT_KEY = "element-6066-11e4-a52e-4f735466cecf";
  8. export declare const DEFAULT_FLAGS: string[];
  9. export declare const CHROME_NAMES: string[];
  10. export declare const FIREFOX_NAMES: string[];
  11. export declare const EDGE_NAMES: string[];
  12. export declare const SUPPORTED_BROWSER: string[];
  13. export declare const BROWSER_TYPE: {
  14. chrome: 'chrome';
  15. firefox: 'firefox';
  16. edge: 'edge';
  17. };
  18. export declare const DEFAULTS: DefaultOptions<WebDriver.Options>;
  19. export declare const DEFAULT_IMPLICIT_TIMEOUT = 0;
  20. export declare const DEFAULT_PAGELOAD_TIMEOUT: number;
  21. export declare const DEFAULT_SCRIPT_TIMEOUT: number;
  22. export declare const SUPPORTED_SELECTOR_STRATEGIES: string[];
  23. export declare const SERIALIZE_PROPERTY = "data-devtoolsdriver-fetchedElement";
  24. export declare const SERIALIZE_FLAG = "__executeElement";
  25. export declare const PPTR_LOG_PREFIX = "puppeteer:protocol";
  26. export declare const ERROR_MESSAGES: {
  27. staleElement: {
  28. name: string;
  29. message: string;
  30. };
  31. };
  32. export declare const BROWSER_ERROR_MESSAGES: {
  33. firefoxNightly: string;
  34. };
  35. export declare const VENDOR_PREFIX: {
  36. chrome: 'goog:chromeOptions';
  37. firefox: 'moz:firefoxOptions';
  38. edge: 'ms:edgeOptions';
  39. };
  40. export declare const CHANNEL_FIREFOX_NIGHTLY = "nightly";
  41. export declare const CHANNEL_FIREFOX_TRUNK = "trunk";
  42. //# sourceMappingURL=constants.d.ts.map