/// <summary>
 /// select corresponded selectbox if need with detecting for search applying
 /// </summary>
 public void SearchInSelectBox(SelectBox slkBox, String text, By locator)
 {
     if ((text != "") || (text != "\""))
     {
         slkBox.SelectOptionWithDelay(text, locator);
     }
 }