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

renewbutton (#906) ❌ Not validated

Job

No job planned.

Difficulty

Hard

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

describe("circ/renewbutton", 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("renewbutton", function () {
                cy.visit("/cgi-bin/koha/circ/circulation.pl");
                cy.get("#issues-table-actions").should('be.visible').screenshot("renewbutton");
            });
        });
    });
    afterEach(function () {
        
        if (this.currentTest.state === 'failed') {
            Cypress.env("TEST_FAILED", true);
        }
    });
});

Spec data

Page

circulation.pl

Interface

staff

Element selector

#issues-table-actions

Missing selector

setup


        

workflow


        

teardown


    

Notes

Needs a patron file with checkouts

Additional KTD data

Test failure

AssertionError: Timed out retrying after 10000ms: Expected to find element: `#issues-table-actions`, but never found it.
    at Context.eval (webpack://koha/./cypress/integration/circ/renewbutton.ts:16:48)

Old