Beispiel #1
0
 public void EditarItemDePedido(string ValorPagamento, string Moeda, string TaxaConversao, string Autor)
 {
     SelecionarItemParaEditar(Autor);
     KeyboardActions.ShiftHome(Browser, InpValorPagamento);
     KeyboardActions.Backspace(Browser, InpValorPagamento);
     AutomatedActions.SendData(Browser, InpValorPagamento, ValorPagamento);
     SelecionarMoedaPedido(Moeda);
     KeyboardActions.ShiftHome(Browser, InpTaxaConversao);
     KeyboardActions.Backspace(Browser, InpTaxaConversao);
     AutomatedActions.SendData(Browser, InpTaxaConversao, TaxaConversao);
 }