← Back to library
Cypressnavigationbeginnerv10+

Navigate and assert URL

Go to a page and verify the resulting URL.

1it('navigates and checks URL', () => {
2  cy.visit('/');
3
4  cy.get('nav a[href="/about"]').click();
5
6  // Assert full URL
7  cy.url().should('include', '/about');
8
9  // Or check just the pathname
10  cy.location('pathname').should('eq', '/about');
11});
#visit#url#location#navigate