mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
10 lines
163 B
TypeScript
10 lines
163 B
TypeScript
import { BasePage } from './base';
|
|
|
|
export class BannerStack extends BasePage {
|
|
getters = {
|
|
banner: () => cy.getByTestId('banner-stack'),
|
|
};
|
|
|
|
actions = {};
|
|
}
|