Hello all,
The Problem
Currently I'm working at an organisation that has an over reliance on re-direct tests, I understand that in certain circumstances this method is effective but currently around 80% of our tests are set up in this way. Obviously running a re-direct test involves building a new page and really slows down the entire testing process.
In my mind I see three tiers of tests
Tier 1
Basic VEC tests that can be done by a non-dev, this would include text, Imagery and minor layout changes
Tier 2
These tests include the above and introducing new sections into the page and more major layout changes
Tier 3
This would be major changes to the page or even a full page re-design
Currently we would default to a re-direct test for anything that fell into tier 2 or tier 3 (above), what I would like to understand is for a tier 2 (partial re-design) and a tier three test (full page re-design) what would be the most efficient way of running this test without a re-direct test?
I want to avoid running thousands of lines of Javascript to manipulate the DOM, I know this way is possible but it would take a long time and if the test wins it would still need "properly built"
Thanks in advance
Dan