Skip to content

Instantly share code, notes, and snippets.

@DennisDurairaj
Last active April 6, 2020 15:11
Show Gist options
  • Save DennisDurairaj/6b8262f96263a4eafdf42ed181d60e5c to your computer and use it in GitHub Desktop.
Save DennisDurairaj/6b8262f96263a4eafdf42ed181d60e5c to your computer and use it in GitHub Desktop.
describe("Testing Fetching Weather Forecast", () => {
it("Searches weather for valid city", () => {
cy.visit("http://localhost:3000");
cy.get("[data-cy='cityName']").type("London");
cy.get("[data-cy='submitCity']").click();
cy.get("[data-cy='weatherDisplay']").contains("London");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment