@woocommerce/e2e-environment
Version:
WooCommerce End to End Testing Environment Configuration.
39 lines (35 loc) • 879 B
JavaScript
const path = require( 'path' );
const mkdirp = require( 'mkdirp' );
const { resolveLocalE2ePath } = require( './test-config' );
/**
* Take a screenshot if browser context exists.
*
* @param message
* @return {Promise<{filePath: string, title: string}|{filePath: *, title: *}>}
*/
const takeScreenshotFor = async (message) => {
let now = new Date();
const title = `${message.replace( /\.$/, '' )}-${now.getDate()}${now.getHours()}${now.getMinutes()}${now.getSeconds()}`;
const savePath = resolveLocalE2ePath( 'screenshots' );
const filePath = path.join(
savePath,
`${ title }.png`.replace( /[^a-z0-9.-]+/gi, '-' )
);
mkdirp.sync( savePath );
try {
await page.screenshot( {
path: filePath,
fullPage: true,
} );
} catch ( error ) {
return {
title,
filePath: '',
};
}
return {
title,
filePath,
};
};
module.exports = takeScreenshotFor;