Job
No job planned.
Difficulty
Easy
Cancel
Spec (updated on Wed Jul 23 15:04:06 2025)
describe("about/aboutperlmodules", 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("aboutperlmodules", function () {
cy.visit("/cgi-bin/koha/about.pl?tab=perl");
cy.waitForPageLoad();
cy.get("#abouttabs").should('be.visible').screenshot("aboutperlmodules");
});
});
});
afterEach(function () {
Cypress.env('PADDING_BEFORE_SCREENSHOT', undefined);
if (this.currentTest.state === 'failed') {
Cypress.env("TEST_FAILED", true);
}
});
});
Spec data
Page
about.pl?tab=perl
Interface
staff
Element selector
#abouttabs
Missing selector
N
setup
workflow
teardown
Notes
Screenshot is cut off to the right (fixed see https://gitlab.com/joubu/koha-manual-screenshots-wip/-/issues/15)
Cancel
Additional KTD data
Cancel