-
-
Notifications
You must be signed in to change notification settings - Fork 369
Closed
Labels
Description
I find myself having to do something like this for my conversion page:
finished('product_info_partial')
finished('mobile_get_it_now_copy_cheat_sheet')
finished('mobile_get_it_now_copy_practice_test')
finished('cs_catch_all_landing_pages')
finished('cs_landing_pages')
finished('pt_landing_pages')
finished('bundle_landing_pages')
finished('dmvcs_cheat_sheets_index')
finished("#{@site.subdomain}_homepage_copy")
finished("desktop_practice_test_link")
finished("dmvcs_mobile_practice_test_url")
which is, IMO, a bit crazy. I would prefer to just do something like this:
finished(goal: 'purchase')
and then when defining an experiment I could do something like:
ab_test({goal: 'purchase', label: 'mobile_get_it_now_copy_cheat_sheet'}, 'alt1', 'alt2', 'alt3')
This seems to be a much DRYer way of handing experiments when they are all related to the same goal.