Files
automatisch/packages/e2e-tests/fixtures/executions-page.js
2024-12-10 21:03:23 +01:00

13 lines
341 B
JavaScript

const { AuthenticatedPage } = require('./authenticated-page');
export class ExecutionsPage extends AuthenticatedPage {
screenshotPath = '/executions';
constructor(page) {
super(page);
this.executionRow = this.page.getByTestId('execution-row');
this.executionsPageLoader = this.page.getByTestId('executions-loader');
}
}