/// <summary>
 /// Initializes a new instance of the <see cref="FindFirstSelectedOptionProperty"/> class.
 /// </summary>
 /// <param name="optionSelect">A <see cref="SeleniumOptionSelector"/> that gets options from the element.</param>
 /// <param name="property">The property on which to select the options.</param>
 public FindFirstSelectedOptionProperty(SeleniumOptionSelector optionSelect, SeleniumOptionSelector.Property property)
 {
     this.selector = optionSelect;
     this.property = property;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="FindSelectedOptionProperties"/> class.
 /// </summary>
 /// <param name="optionSelect">A <see cref="SeleniumOptionSelector"/> that gets options from the element.</param>
 /// <param name="property">The property on which to select the options.</param>
 public FindSelectedOptionProperties(SeleniumOptionSelector optionSelect, SeleniumOptionSelector.Property property)
 {
     this.selector = optionSelect;
     this.property = property;
 }