Giter VIP home page Giter VIP logo

Comments (6)

YOU54F avatar YOU54F commented on May 18, 2024 11

This is an issue with webpack, I have switched to

https://github.com/cypress-io/cypress-browserify-preprocessor

which has resolved the issue

from cypress-axe.

patheard avatar patheard commented on May 18, 2024 4

@vytch's workaround did it for us, but we tweaked it a bit so we didn't have to hardcode the axe.min.js path:

Cypress.Commands.add('injectAxe', () => {
  cy.window({ log: false }).then(window => {
      const axe = require('axe-core/axe.js');
      const script = window.document.createElement('script');
      script.innerHTML = axe.source;
      window.document.head.appendChild(script);
  })
})

from cypress-axe.

craig-dae avatar craig-dae commented on May 18, 2024 2

I have tried @patheard's solution, and also rolling cypress-axe back to 0.9.1. Both result in the error:
exports is not defined

It appears that axe is located successfully, but that axe is throwing that error when it loads.

from cypress-axe.

vytch avatar vytch commented on May 18, 2024

Ok, I have tried to inject the content of axe.source directly on the page and I can reproduce that issue there too. So the issue seems to come from axe-core.

from cypress-axe.

vytch avatar vytch commented on May 18, 2024

I have managed to work out something.
Basically, the axe-core source is broken, so instead I am using the axe.min.js.

Here is how the code looks like:


Cypress.Commands.add('addAxeCode', () => {
    cy.window({ log: false }).then(window => {
        // window.eval(axeCore.source);

        var script = window.document.createElement('script');
        script.src = "/node_modules/axe-core/axe.min.js";

        window.document.head.appendChild(script);
    })
});
 

from cypress-axe.

aaronjensen avatar aaronjensen commented on May 18, 2024

This workaround didn't work for us. We hit a different ReferenceError. We're also using yarn workspaces, so that could be an issue. We're going to switch back to plain js and not use webpack for now.

from cypress-axe.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.