Challenge: Test Form Inputs with Cypress
Explore how to use Cypress to write tests that prevent creating duplicate meetup entries and validate the creation of meetup detail pages. This lesson helps you practice applying testing best practices by writing tests based on Arrange-Act-Assert guidelines and challenge yourself with independent test writing for real-world scenarios.
We'll cover the following...
We'll cover the following...
In this challenge, we will focus on two important features: preventing the creation of a meetup with an existing name and ensuring that the newly created meetups have their dedicated page.
Preventing duplicate meetups
Let’s review some of the functionalities to better understand how our application works when submitting a meetup with a ...