https://cypress.io logo
Chrome Extension
# i-need-help
e
Is there another method of getting chrome extensions loaded with Cypress 12.5.1? Ive followed this https://www.cypress.io/blog/2020/01/07/how-to-load-the-react-devtools-extension-in-cypress/ as well as add browser extension here but never see it show up when testing https://docs.cypress.io/api/plugins/browser-launch-api#Modify-browser-launch-arguments-preferences-and-extensions The extension is within it's own folder under
cypress
directory.
NM I got it loaded.
Copy code
const path = require('path');
launchOptions.extensions.push(path.resolve(__dirname), 'cypress/dirName');
7 Views