/// <summary>
 /// Fills the text by identifier.
 /// </summary>
 /// <param name="id">The identifier.</param>
 /// <param name="valor">The valor.</param>
 protected void FillTextById(string id, string valor)
 {
     _webDriver.ClearText(id, EnumTypeBy.ById);
     _webDriver.WriteText(id, valor, EnumTypeBy.ById);
 }