Skip to content

Commit

Permalink
Merge Form orientation #252
Browse files Browse the repository at this point in the history
  • Loading branch information
MiraGeowerkstatt authored Aug 4, 2022
2 parents 20699d8 + 32c9774 commit dc6792e
Show file tree
Hide file tree
Showing 17 changed files with 1,141 additions and 1,151 deletions.
4 changes: 2 additions & 2 deletions src/ClientApp/cypress/integration/inputform.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ describe("Input form tests", () => {
.scrollIntoView()
.click();

cy.get("button[type=submit]").should("not.be.visible");
cy.get("button[type=submit]").should("be.disabled");
cy.get("form[name=bohrung-form]").should("contain", "Bohrung bearbeiten");
cy.get("form[name=bohrung-form]")
.find("input[name=bezeichnung]")
.should("be.visible")
.click({ force: true })
.type(" And More");

cy.contains("button", "Bohrung speichern").scrollIntoView().should("be.visible").scrollIntoView().click();
cy.contains("button", "Bohrung speichern").scrollIntoView().should("not.be.disabled").scrollIntoView().click();
});

it("Delete Bohrung", function () {
Expand Down
Loading

0 comments on commit dc6792e

Please sign in to comment.