casdoor/web/cypress/e2e/products.cy.js
jakiuncle 7df043fb15
fix: fix cypress error (#1817)
* fix: fix cypress error

* fix: fix cypress error

* fix: fix cypress error

* fix: fix cypress error

* fix: fix cypress error

* fix: fix cypress error

* fix: fix cypress error

* fix: fix cypress error

* fix: fix cypress error
2023-05-09 20:51:07 +08:00

15 lines
453 B
JavaScript

describe('Test products', () => {
beforeEach(()=>{
cy.login();
})
const selector = {
add: ".ant-table-title > div > .ant-btn > span"
};
it("test products", () => {
cy.visit("http://localhost:7001/products");
cy.url().should("eq", "http://localhost:7001/products");
cy.get(selector.add,{timeout:10000}).click();
cy.url().should("include","http://localhost:7001/products/")
});
})