Skip to content

Commit

Permalink
Anpassung Integrationstest
Browse files Browse the repository at this point in the history
  • Loading branch information
SykTigera committed Dec 10, 2023
1 parent c08bbe5 commit 7b57380
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,17 @@ describe("Integration: MainPagekomponente mit kompletten positivem TransferMoney
cy.get("button[id='0-transferieren']").click();

// Der zu übertragende Wert = 300$ wird eingetragen
cy.get("[data-testid='amount_input']")
cy
.get("[data-testid='amount_input']")
.focus()
.should("have.value", "0")
.clear()
.type("600")
.type("600");


cy
.get("[data-testid='amount_input']")
.focus()
.should("have.value", "600");

// Der Radiobutton für das Konto, auf welchen der Wert übertragen werden soll, wird ausgewählt.
Expand Down

0 comments on commit 7b57380

Please sign in to comment.