PyNitid
Results
1
comments of
PyNitid
My workaround with this problem was to use the clipboard: C# using System.Windows.Forms; using selenium = OpenQA.Selenium; System.Windows.Forms.Clipboard.SetText(@"a\rebel\string"); var thatTextbox = driver.FindElementByName("ThatTextboxName"); thatTextbox.SendKeys(selenium.Keys.Control + "v"); Plus: Is faster than typing...