Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HtmlListItem"/> class.
 /// </summary>
 /// <param name="sourceControl">The source control.</param>
 /// <param name="searchConfiguration">The search configuration.</param>
 public HtmlListItem(CUITControls.HtmlCustom sourceControl, By searchConfiguration = null)
     : base(sourceControl, searchConfiguration)
 {
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HtmlHeading1"/> class.
 /// </summary>
 /// <param name="sourceControl">The source control.</param>
 /// <param name="searchConfiguration">The search configuration.</param>
 public HtmlHeading1(CUITControls.HtmlCustom sourceControl, By searchConfiguration = null)
     : base(sourceControl, searchConfiguration)
 {
     AddSearchProperty(CUITControls.HtmlControl.PropertyNames.TagName, TagName);
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HtmlPassword"/> class.
 /// </summary>
 /// <param name="sourceControl">The source control.</param>
 /// <param name="searchConfiguration">The search configuration.</param>
 public HtmlPassword(CUITControls.HtmlEdit sourceControl, By searchConfiguration = null)
     : base(sourceControl, searchConfiguration)
 {
     AddSearchProperty(CUITControls.HtmlControl.PropertyNames.Type, "PASSWORD");
 }