|
|
import { Page, Locator } from 'playwright'; |
|
|
|
|
|
const EDITOR_TIMEOUT = 60 * 1000; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export class EditorComponent { |
|
|
private page: Page; |
|
|
private parentLocator: Locator | null; |
|
|
private canvasLocator: Locator | null; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
constructor( page: Page ) { |
|
|
this.page = page; |
|
|
this.parentLocator = null; |
|
|
this.canvasLocator = null; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async parent(): Promise< Locator > { |
|
|
if ( this.parentLocator ) { |
|
|
return this.parentLocator; |
|
|
} |
|
|
|
|
|
try { |
|
|
this.parentLocator = await Promise.any( [ |
|
|
this.waitForFramedEditor(), |
|
|
this.waitForUnframedEditor(), |
|
|
] ); |
|
|
} catch ( _error ) { |
|
|
throw new Error( 'Timed out waiting for the Editor' ); |
|
|
} |
|
|
|
|
|
return this.parentLocator; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async canvas(): Promise< Locator > { |
|
|
if ( this.canvasLocator ) { |
|
|
return this.canvasLocator; |
|
|
} |
|
|
|
|
|
try { |
|
|
this.canvasLocator = await Promise.any( [ |
|
|
this.waitForFramedCanvas(), |
|
|
this.waitForUnframedCanvas(), |
|
|
] ); |
|
|
} catch ( _error ) { |
|
|
throw new Error( 'Timed out waiting for the Editor canvas' ); |
|
|
} |
|
|
|
|
|
return this.canvasLocator; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private async waitForFramedEditor() { |
|
|
const parentLocator = this.page |
|
|
.frameLocator( 'iframe[src*="calypsoify"]' ) |
|
|
.locator( 'body.block-editor-page' ); |
|
|
|
|
|
await parentLocator.waitFor( { timeout: EDITOR_TIMEOUT } ); |
|
|
return parentLocator; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private async waitForUnframedEditor() { |
|
|
const parentLocator = this.page.locator( 'body.block-editor-page' ); |
|
|
|
|
|
await parentLocator.waitFor( { timeout: EDITOR_TIMEOUT } ); |
|
|
return parentLocator; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private async waitForFramedCanvas() { |
|
|
const parentLocator = await this.parent(); |
|
|
const canvasLocator = parentLocator |
|
|
.locator( '.editor-visual-editor' ) |
|
|
.first() |
|
|
.frameLocator( 'iframe' ) |
|
|
.locator( '.editor-styles-wrapper' ); |
|
|
|
|
|
await canvasLocator.waitFor( { timeout: EDITOR_TIMEOUT } ); |
|
|
return canvasLocator; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private async waitForUnframedCanvas() { |
|
|
const parentLocator = await this.parent(); |
|
|
const canvasWrapper = parentLocator.locator( '.editor-styles-wrapper' ); |
|
|
await canvasWrapper.waitFor(); |
|
|
|
|
|
return parentLocator; |
|
|
} |
|
|
} |
|
|
|