File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Aquality.Selenium/src/Aquality.Selenium/Elements Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public IList<string> Values
3939
4040 public new ComboBoxJsActions JsActions => new ComboBoxJsActions ( this , ElementType ) ;
4141
42- public void SelectOptionThatContainsText ( string text )
42+ public void SelectByContainingText ( string text )
4343 {
4444 Logger . InfoLoc ( "loc.selecting.value" ) ;
4545 DoWithRetry ( ( ) =>
@@ -58,7 +58,7 @@ public void SelectOptionThatContainsText(string text)
5858 } ) ;
5959 }
6060
61- public void SelectOptionThatContainsValue ( string value )
61+ public void SelectByContainingValue ( string value )
6262 {
6363 Logger . InfoLoc ( "loc.selecting.value" ) ;
6464 DoWithRetry ( ( ) =>
Original file line number Diff line number Diff line change @@ -54,12 +54,12 @@ public interface IComboBox : IElement
5454 /// Selects option by partial text.
5555 /// </summary>
5656 /// <param name="text">Partial text of option.</param>
57- void SelectOptionThatContainsText ( string text ) ;
57+ void SelectByContainingText ( string text ) ;
5858
5959 /// <summary>
6060 /// Selects option by partial value.
6161 /// </summary>
6262 /// <param name="value">Partial value of option.</param>
63- void SelectOptionThatContainsValue ( string value ) ;
63+ void SelectByContainingValue ( string value ) ;
6464 }
6565}
You can’t perform that action at this time.
0 commit comments