I use Selenium with the latest Chromedriver, the Script opens a Windows Window to Select a Picture to Upload.
It's working, but the typing is so slow, like slow-motion 10 Letters > 3-5 Sec....
I use this Command:
SendKeys.SendWait(...);
On the other Side, in the Chrome Window, the SendKeys is so fast, you can't see that is typing, the text is instant here, but not in the Windows Window for Uploading a Pic...
driver.FindElement(By.XPath("...")).SendKeys("...");
Anyone have an Idea why that happens and how I can solve this?