I’m in the process of launching an app and currently trying to add some automated tests
I’ve set a development store that is gonna have my app pre-installed
When trying to access my admin store using Selenium web driver I receive a Captcha by cloudflare - any way I can disabled this for a specific store?
Unfortunately I don’t believe it’s possible. Cloudflare is Shopify’s WAF and it applies to all pages and stores.
You could try using a service like Browserless which has a bot bypass feature, but it’s just a cat and mouse game between browser emulation and bot protection.
But would love to be wrong, I would also love to automate our E2E testing. The closest I’ve gotten is downloading the raw HTML/JS/CSS of a specific page, then using an Express server to make a mock page to test functionality on a single page.