|
Lines 8-14
describe("Breadcrumb tests", () => {
Link Here
|
| 8 |
|
8 |
|
| 9 |
it("Breadcrumbs", () => { |
9 |
it("Breadcrumbs", () => { |
| 10 |
cy.visit("/cgi-bin/koha/cataloguing/cataloging-home.pl"); |
10 |
cy.visit("/cgi-bin/koha/cataloguing/cataloging-home.pl"); |
| 11 |
cy.contains("Manage staged records").click(); |
11 |
cy.contains("Manage staged records").should("exist"); |
| 12 |
cy.get("#breadcrumbs").contains("Cataloging"); |
12 |
cy.get("#breadcrumbs").contains("Cataloging"); |
| 13 |
}); |
13 |
}); |
| 14 |
}); |
14 |
}); |
|
Lines 21-27
describe("loads the manage MARC import page", () => {
Link Here
|
| 21 |
|
21 |
|
| 22 |
it("loads the manage MARC import page", () => { |
22 |
it("loads the manage MARC import page", () => { |
| 23 |
cy.visit("/cgi-bin/koha/tools/manage-marc-import.pl"); |
23 |
cy.visit("/cgi-bin/koha/tools/manage-marc-import.pl"); |
| 24 |
cy.contains("Manage staged MARC records").click(); |
24 |
cy.contains("Manage staged MARC records").should("exist"); |
| 25 |
}); |
25 |
}); |
| 26 |
|
26 |
|
| 27 |
it("upload a MARC record", () => { |
27 |
it("upload a MARC record", () => { |
| 28 |
- |
|
|