This message was deleted.
# ask-questions
w
This message was deleted.
a
Thanks. I have already setup Edge worker experiment and it is working. However, I have some flickering when navigating from any other website's page to ab test page. When I access the ab test page directly by URL in a browser, it works instantly. I am using Angular framework and have added Script Tag SDK to the website. How can I resolve flickering when navigating to my page by Angular app?
h
It sounds like you have a SPA of sorts where the initial page load runs the experiment through the edge but navigation in that app (without page loads) do not. You need to do a few things to make this work. 1. Make sure the
url
property of the growthbook SDK changes each time Angular navigation happens. 2. Change your Edge environment variables a bit to allow hybrid visual tests (both edge and client):
RUN_VISUAL_EDITOR_EXPERIMENTS=everywhere
123 Views