-1
When using the Sendkeys function in Selenium, the value sent to the textbox is dropped.
This happens for both Chrome and Firefox.
Ex.: I’m sending the value 123456789 to the textbox field and it’s coming 234567891.
var campo = driver.FindElement(By.Id("txtNumero"));
campo.Clear();
campo.SendKeys("123456789");
Paulo, partially solved. For some sites, this solution worked, but for others, it did not.
– Alfredo Jamil