cabbie-sync
Version:
A synchronous webdriver client
22 lines (21 loc) • 1.23 kB
TypeScript
export declare type Capability = 'browserName' | 'version' | 'platform' | 'javascriptEnabled' | 'takesScreenshot' | 'handlesAlert' | 'databaseEnabled' | 'locationContextEnabled' | 'applicationCacheEnabled' | 'browserConnectionEnabled' | 'cssSelectorsEnabled' | 'webStorageEnabled' | 'rotatable' | 'acceptSslCerts' | 'nativeEvents' | 'proxy';
export interface ICapabilityEnum {
readonly BROWSER_NAME: 'browserName';
readonly VERSION: 'version';
readonly PLATFORM: 'platform';
readonly JAVASCRIPT_ENABLED: 'javascriptEnabled';
readonly TAKES_SCREENSHOT: 'takesScreenshot';
readonly HANDLES_ALERT: 'handlesAlert';
readonly DATABASE_ENABLED: 'databaseEnabled';
readonly LOCATION_CONTEXT_ENABLED: 'locationContextEnabled';
readonly APPLICATION_CACHE_ENABLED: 'applicationCacheEnabled';
readonly BROWSER_CONNECTION_ENABLED: 'browserConnectionEnabled';
readonly CSS_SELECTORS_ENABLED: 'cssSelectorsEnabled';
readonly WEB_STORAGE_ENABLED: 'webStorageEnabled';
readonly ROTATABLE: 'rotatable';
readonly ACCEPT_SSL_CERTS: 'acceptSslCerts';
readonly NATIVE_EVENTS: 'nativeEvents';
readonly PROXY: 'proxy';
}
declare const _default: ICapabilityEnum;
export default _default;