kobiton.d.ts 469 B

12345678910111213
  1. /// <reference types="q" />
  2. import * as q from 'q';
  3. import { Config } from '../config';
  4. import { DriverProvider } from './driverProvider';
  5. export declare class Kobiton extends DriverProvider {
  6. constructor(config: Config);
  7. /**
  8. * Configure and launch (if applicable) the object's environment.
  9. * @return {q.promise} A promise which will resolve when the environment is
  10. * ready to test.
  11. */
  12. protected setupDriverEnv(): q.Promise<any>;
  13. }