private void the_feature_scenarios_are_VISIBLE(int feature, [VisibleFormat] bool visible)
        {
            var actual = _driver.FindFeature(feature).FindScenarios().Count(e => e.Displayed == visible);

            Assert.That(actual, Is.EqualTo(_features[feature - 1].GetScenarios().Count()));
        }