Anyone have a good method of reviewing variants ag...
# ask-questions
l
Anyone have a good method of reviewing variants against a feature flag in Safari? I'm using the Chrome/Firefox extension but there doesn't seem to be one for Safari, but I'd like to review every variant in that browser as well before shipping.
s
Depending on the setup, you should be able to add a query param to the URL with the experiment name and variation you want to test, like this: https://growthbook-playground.vercel.app/?headline-cta=1 vs https://growthbook-playground.vercel.app/?headline-cta=0
l
Interesting, is there any documentation for making sure this is enabled? Doesn't seem to work with how i've got things rolling.
h
the URL query param option only works for experiments, not for feature flags. If you need finer control, you can use the browser console and do things like
window._growthbook.setForcedFeatures(map);
(where
map
is a
Map()
of feature ids : values)