Skip to content

Instantly share code, notes, and snippets.

@rainerhahnekamp
Created August 3, 2021 08:29
Embed
What would you like to do?
describe("Home", () => {
it("should click the button", () => {
cy.visit("");
cy.get("button").click();
cy.get("div.message").should("contain.text", "You clicked me");
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment