|
Lines 15-21
describe("Breadcrumbs tests", () => {
Link Here
|
| 15 |
cy.get(".breadcrumb-item").eq(2).contains("Record sources"); |
15 |
cy.get(".breadcrumb-item").eq(2).contains("Record sources"); |
| 16 |
// use the 'New' button |
16 |
// use the 'New' button |
| 17 |
cy.contains("New record source").click(); |
17 |
cy.contains("New record source").click(); |
| 18 |
cy.get(".current").contains("Add record source"); |
18 |
cy.get('[aria-current="page"]').contains("Add record source"); |
| 19 |
cy.get("#breadcrumbs") |
19 |
cy.get("#breadcrumbs") |
| 20 |
.contains("Record sources") |
20 |
.contains("Record sources") |
| 21 |
.should("have.attr", "href") |
21 |
.should("have.attr", "href") |
| 22 |
- |
|
|