@serenity-js/protractor
Version:
Adapter that integrates @serenity-js/web with Protractor, enabling Serenity/JS reporting and using the Screenplay Pattern to write end-to-end test scenarios
15 lines • 562 B
TypeScript
import type { ProtractorBrowser } from 'protractor';
/**
* @private
*/
export declare class StandardisedCapabilities {
private currentBrowser;
static of(currentBrowser: () => ProtractorBrowser): StandardisedCapabilities;
constructor(currentBrowser: () => ProtractorBrowser);
browserName(): Promise<string | undefined>;
browserVersion(): Promise<string | undefined>;
platformName(): Promise<string | undefined>;
platformVersion(): Promise<string | undefined>;
private get;
}
//# sourceMappingURL=StandardisedCapabilities.d.ts.map