Skip to content

Commit

Permalink
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
@@ -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 () {
Loading

0 comments on commit dc6792e

Please sign in to comment.