Job
No job planned.
Difficulty
Easy
Cancel
Spec (updated on Wed Mar 11 14:18:03 2026)
describe("tools/batchpatron/batchmodify", function () {
const languages = ['en', 'es-ES', 'fr-FR', 'de-DE', 'el-GR', 'hi', 'zh-Hant-TW'];
languages.forEach((lang) => {
describe(`in ${lang}`, () => {
beforeEach(function(){
// Skip if 'en' test failed
if (Cypress.env("EN_TEST_FAILED")) {
this.skip();
}
cy.login();
/* No specific padding defined */
cy.set_cookie_lang(lang);
});
it("batchmodify", function () {
cy.visit("/cgi-bin/koha/tools/modborrowers.pl");
cy.waitForPageLoad();
cy.get("#cardnumberlist").type("23529000033739\n23529000035676\n23529000035726\n23529000050113\n23529000053836\n23529000054503\n23529000058017");
cy.get("main").should('be.visible').screenshot("batchmodify");
});
});
});
afterEach(function () {
Cypress.env('PADDING_BEFORE_SCREENSHOT', undefined);
// Set EN_TEST_FAILED if the 'en' test failed
if (this.currentTest.parent.title.includes('in en') && this.currentTest.state === 'failed') {
Cypress.env("EN_TEST_FAILED", true);
}
});
});
Spec data
Page
tools/modborrowers.pl
Interface
staff
Element selector
main
Missing selector
N
setup
workflow
type #cardnumberlist=23529000033739\n23529000035676\n23529000035726\n23529000050113\n23529000053836\n23529000054503\n23529000058017
teardown
Notes
Cancel
Additional KTD data
Cancel