Cypress testing pseudo CSS class :before

后端 未结 4 1271
我在风中等你
我在风中等你 2021-02-15 09:50

Is there a way in which I can test the content of the pseudo CSS class for :before on my element with Cypress?

I have seen links documenting:

4条回答
  •  攒了一身酷
    2021-02-15 10:18

    Based on Zach's answer I created a command that returns the pseudo-element property (without single quotes around).

    function unquote(str) {
        return str.replace(/(^")|("$)/g, '');
    }
    
    Cypress.Commands.add(
        'before',
        {
            prevSubject: 'element',
        },
        (el, property) => {
            const win = el[0].ownerDocument.defaultView;
            const before = win.getComputedStyle(el[0], 'before');
            return unquote(before.getPropertyValue(property));
        },
    );
    

    You will use it like this

    it('color is black', () => {
        cy.get('button')
           .before('color')
           .should('eq', 'rgb(0,0,0)'); // Or .then()
    });
    

提交回复
热议问题