Login

Screenshots for the Koha manual

New screenshots | All screenshots | Full test results | Manuals (wip)
en ar cs de el es fr fr_CA hi it pt pt_BR sk sv tr zh_Hant

Image details

addcheck (#141)

Job

No job planned.

Difficulty

Medium

Spec (updated on Wed Jun 4 09:23:37 2025)

describe("admin/additional/addcheck", function () {
    const languages = ['en', 'es-ES', 'fr-FR'];
    languages.forEach((lang) => {
        describe(`in ${lang}`, () => {
            beforeEach(function(){
                // If previous test failed, skip this one
                if (Cypress.env("TEST_FAILED")) {
                    this.skip();
                }
                cy.login();
                cy.set_cookie_lang(lang);
            });

            it("addcheck", function () {
                cy.visit("/cgi-bin/koha/admin/additional-fields.pl?op=add_form&tablename=aqinvoices");
                cy.get("#name").type("Check #");
                cy.get("#searchable").check();
                cy.get("main").click();
                cy.get("main").should('be.visible').screenshot("addcheck");
            });
        });
    });
    afterEach(function () {
        
        if (this.currentTest.state === 'failed') {
            Cypress.env("TEST_FAILED", true);
        }
    });
});

Spec data

Page

additional-fields.pl?op=add_form&tablename=aqinvoices

Interface

staff

Element selector

main

Missing selector

N

setup


        

workflow

type #name=Check #
check #searchable
click main

teardown


    

Notes

Source screenshot comes from 22.11; same screen in 23.05 is different.

Additional KTD data

Old

New (updated on Wed Jun 4 22:26:02 2025)

New (es)

New (fr)