Job
No job planned.
Difficulty
Cancel
Spec (updated on Wed Jul 23 15:04:20 2025)
describe("admin/cataloging/editfield", function () {
const languages = ['en', 'es-ES', 'fr-FR', 'de-DE', 'el-GR', 'zh-Hant-TW'];
languages.forEach((lang) => {
describe(`in ${lang}`, () => {
beforeEach(function(){
// If previous test failed, skip this one
if (Cypress.env("TEST_FAILED")) {
this.skip();
}
cy.login();
/* No specific padding defined */
cy.set_cookie_lang(lang);
});
it("editfield", function () {
cy.visit("/cgi-bin/koha/admin/marctagstructure.pl?op=add_form&searchfield=020&frameworkcode=BKS");
cy.waitForPageLoad();
cy.get("fieldset.rows").should('be.visible').screenshot("editfield");
});
});
});
afterEach(function () {
Cypress.env('PADDING_BEFORE_SCREENSHOT', undefined);
if (this.currentTest.state === 'failed') {
Cypress.env("TEST_FAILED", true);
}
});
});
Spec data
Page
/cgi-bin/koha/admin/marctagstructure.pl?op=add_form&searchfield=020&frameworkcode=BKS
Interface
staff
Element selector
fieldset.rows
Missing selector
Y
setup
workflow
teardown
Notes
Missing "Save changes" and "Cancel" buttons
Cancel
Additional KTD data
Cancel