protected WebTestAction([NotNull] ControlObject control, [NotNull] ElementScope scope)
        {
            ArgumentUtility.CheckNotNull("control", control);
            ArgumentUtility.CheckNotNull("scope", scope);

            _control = control;
            _scope   = scope;
        }
        public DefaultStyleInformation([NotNull] ControlObject controlObject, [NotNull] ElementScope styledScope)
        {
            ArgumentUtility.CheckNotNull("controlObject", controlObject);
            ArgumentUtility.CheckNotNull("styledScope", styledScope);

            _controlObject = controlObject;
            _styledScope   = styledScope;
        }