UNPKG

@o3r/testing

Version:

The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.

13 lines 595 B
import { PageFixtureProfile } from '../page-fixture'; import { O3rComponentFixture } from './component-fixture'; import { O3rElement } from './element'; export { PageFixtureProfile } from '../page-fixture'; /** * Implementation of the page fixture dedicated to protractor. * @deprecated Will be removed in v13, please use Playwright instead */ export declare class O3rPageFixture<V extends O3rElement = O3rElement> extends O3rComponentFixture<V> implements PageFixtureProfile<V> { constructor(rootElement?: V); getTitle(): Promise<string>; } //# sourceMappingURL=page-fixture.d.ts.map