mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
d3f01270c7
to test in staging use version `PR-6930-ado-990-trial-banner-does-not-disappear-after-sign-out` <img width="875" alt="image" src="https://github.com/n8n-io/n8n/assets/16496553/dfffe60f-bec3-4c48-bd9c-5990c68afa52">
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 = {};
|
|
}
|