File size: 1,591 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
import { Page, ElementHandle } from 'playwright';
const selectors = {
block: '.wp-block-coblocks-logos',
fileInput: '.components-form-file-upload input[type="file"]',
imageTitleData: ( filename: string ) =>
`${ selectors.block } img[data-image-title*="${ filename }" i]`,
};
/**
* Represents the Logos coblock.
*/
export class LogosBlock {
static blockName = 'Logos';
static blockEditorSelector = '[aria-label="Block: Logos"]';
block: ElementHandle;
/**
* Constructs an instance of this block.
*
* @param {ElementHandle} block Handle referencing the block as inserted on the Gutenberg editor.
*/
constructor( block: ElementHandle ) {
this.block = block;
}
/**
* Uplaods the target file at the supplied path to WPCOM.
*
* @param {string} filePath Path to the file on disk.
*/
async upload( filePath: string ): Promise< void > {
const input = await this.block.waitForSelector( selectors.fileInput, { state: 'attached' } );
await input.setInputFiles( filePath );
await Promise.all( [
this.block.waitForSelector( 'img:not([src^="blob:"])' ),
this.block.waitForElementState( 'stable' ),
] );
}
/**
* Validates block on the page.
*
* @param {Page} page Page on which to verify the presence of the block.
* @param {string} contents Contents used to validate the block.
* @returns {Promise<void>} No return value.
*/
static async validatePublishedContent( page: Page, contents: string[] ): Promise< void > {
for await ( const content of contents ) {
await page.waitForSelector( selectors.imageTitleData( content ) );
}
}
}
|