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

additembuttons (#55)

Job

No job planned.

Difficulty

Easy

Spec (updated on Thu May 22 13:08:41 2025)

describe("cataloging/additembuttons", 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("additembuttons", function () {
                cy.visit("/cgi-bin/koha/cataloguing/additem.pl?biblionumber=1");
                cy.get(".action").should('be.visible').screenshot("additembuttons");
            });
        });
    });
    afterEach(function () {
        
        if (this.currentTest.state === 'failed') {
            Cypress.env("TEST_FAILED", true);
        }
    });
});

Spec data

Page

cataloguing/additem.pl?biblionumber=1

Interface

staff

Element selector

.action

Missing selector

Y

setup


        

workflow


        

teardown


    

Notes

Additional KTD data

Old

New (updated on Wed Jun 4 21:28:55 2025)

New (es)

New (fr)