mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
9 lines
162 B
TypeScript
9 lines
162 B
TypeScript
|
import { BasePage } from './base';
|
||
|
|
||
|
export class BannerStack extends BasePage {
|
||
|
getters = {
|
||
|
banner: () => cy.getByTestId('banner-stack'),
|
||
|
};
|
||
|
actions = {};
|
||
|
}
|