I am using Cypress for testing my web application.
This snippet currently works and will submit a new thing:
describe(\'The Create Page\', () => { i
Use below code to find out the url irrespective of other parameters
cy.location().should((loc) => { expect(loc.pathname.toString()).to.contain('/home'); });