Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • release
  • create-gitlab-pipeline protected
  • 1.5.0
  • 1.4.0
  • 1.3.0
  • 1.2.0
  • 1.1.0
  • 1.0.0
9 results

mvnw.cmd

Blame
  • text-editor-e2-e.component.ts 531 B
    export class TextEditorE2EComponent {
      private readonly root: string;
      private readonly input: string;
      private readonly validationError: string;
    
      constructor(root: string) {
        this.root = `${root}-text-editor`;
        this.input = `${root}-text-input`;
        this.validationError = `${root}-text-editor-error`;
      }
    
      public getInput(): Cypress.Chainable<Element> {
        return cy.getTestElement(this.input);
      }
    
      public getErrorMessage(): Cypress.Chainable<Element> {
        return cy.getTestElement(this.validationError);
      }
    }