📜  cy url 包含 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:30.655000             🧑  作者: Mango

代码示例1
// clicking the anchor causes the browser to follow the link
cy.get('#user-edit a').click()
cy.url().should('include', '/users/1/edit') // => true
cy.url().should('eq', 'http://localhost:8000/users/1/edit') // => true