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

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