Multiple A/B Testing at once?
saulamsal opened this issue · 2 comments
I think there are cases for many when we may want to run multiple experiment at once. For an instance, I may want to pick a font from an array and at the same time pick a different header logo. We can do something like this in ab-testing.php:
$experimentLists= '{
"font": ["system-font","inter-font"],
"home-welcome": ["home-welcomeMainTop","home-welcomeTopStories"]
}';
return [ 'experiments' => json_decode($experimentLists)......... ]
This way, it always pick one item for each array of an experimentLists object.
This would enhance this tool because there are no any other A/B testing tools with this feature.
The problem with this is that you can not really know which experiment is responsible for the goal competition.
The problem with this is that you can not really know which experiment is responsible for the goal competition.
@ben182 I mean I track goals via another method. For example, I'm triggering a third party API URL on the frontend. They will track all the goals I need for example.
Any suggestions for a workaround?