Adding another browser extension #289
Answered
by
drptbl
aidan-starke
asked this question in
Q&A
-
Hi, I am trying to test a token bridge between Ethereum and CENNZnet. At CENNZnet we have our own extension and I'm using cypress-browser-extension-plugin to load it in. How can I configure synpress to work with this? |
Beta Was this translation helpful? Give feedback.
Answered by
drptbl
Dec 21, 2021
Replies: 1 comment 3 replies
-
Hey @aidan-starke, sorry for late answer. You would have to add a support for this extension in synpress. Probably very similar to what you did using plugin mentioned above. To make it work, you will have to do these:
All Best, |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
drptbl
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @aidan-starke, sorry for late answer.
You would have to add a support for this extension in synpress. Probably very similar to what you did using plugin mentioned above.
To make it work, you will have to do these:
https://github.com/Synthetixio/synpress/blob/dev/plugins/index.js#L38
You can see that I'm always fetching specific or latest metamask version from their github above. You would have to do similar thing for your extension.
https://github.com/Synthetixio/synpress/blob/dev/plugins/index.js#L41
After you've prepared your extension folder, provide the path to it for synpress, so that br…