
* feat: introduce playwright * test: migrate apps folder to playwright (#1201) * test: rewrite connections tests with playwright (#1203) * test: rewrite executions tests with playwright (#1207) * test: rewrite flow editor tests with playwright (#1212) * test(flow-editor): rewrite tests using serial mode (#1218) * test: update custom connection creation paths * test: move login logic to page fixture * test: remove cypress tests and deps --------- Co-authored-by: Ali BARIN <ali.barin53@gmail.com>
13 lines
364 B
JavaScript
13 lines
364 B
JavaScript
const path = require('node:path');
|
|
const { BasePage } = require('./base-page');
|
|
|
|
export class ExecutionsPage extends BasePage {
|
|
async screenshot(options = {}) {
|
|
const { path: plainPath, ...restOptions } = options;
|
|
|
|
const computedPath = path.join('executions', plainPath);
|
|
|
|
return await super.screenshot({ path: computedPath, ...restOptions });
|
|
}
|
|
}
|