private void all_scenarios_are_VISIBLE([VisibleFormat] bool visible)
        {
            var actual = _driver.FindAllScenarios().Count(e => e.Displayed == visible);

            Assert.That(actual, Is.EqualTo(_features.SelectMany(f => f.GetScenarios()).Count()));
        }