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

itemtransferred (#842)

Job

No job planned.

Difficulty

Medium

Spec (updated on Wed Jun 4 08:54:03 2025)

describe("circ/itemtransferred", 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("itemtransferred", function () {
                cy.visit("/cgi-bin/koha/circ/branchtransfers.pl");
                cy.get("#tobranchcd").select("FPL", {force: true});
                cy.get("#barcode").type("39999000005417");
                cy.get("#branchtransfers input[type=\"submit\"]").click();
                cy.get("main").should('be.visible').screenshot("itemtransferred");
            });
        });
    });
    afterEach(function () {
        
        if (this.currentTest.state === 'failed') {
            Cypress.env("TEST_FAILED", true);
        }
    });
});

Spec data

Page

branchtransfers.pl

Interface

staff

Element selector

main

Missing selector

N

setup


        

workflow

select #tobranchcd=FPL
type #barcode=39999000005417
click #branchtransfers input[type="submit"]

teardown


    

Notes

Additional KTD data

Old

New (updated on Wed Jun 4 23:18:34 2025)

New (es)

New (fr)