import { ComponentFixtureProfile, O3rComponentFixture } from './component-fixture'; import { ElementProfile, O3rElement } from './element'; /** * Interface to describe a page fixture. */ export interface PageFixtureProfile extends ComponentFixtureProfile { /** * Returns the title of the page */ getTitle(): Promise; } /** * Mock for page fixture class. * This class is used for fixture compilation purpose. */ export declare class O3rPageFixture extends O3rComponentFixture implements PageFixtureProfile { /** * Root element of this fixture. Optional in a Protractor. * All further queries will be applied to the element tree if any, otherwise they will be applied to the whole DOM. * @param _rootElement */ constructor(_rootElement?: V); getTitle(): Promise; } //# sourceMappingURL=page-fixture.d.ts.map