Björn Müller
Björn Müller
Could this one be related to a general [trimming incompatibilities](https://docs.microsoft.com/en-us/dotnet/core/deploying/trimming/incompatibilities)?
Looked a little more into this, and it appears that the problem really is related to the combination of trimming and COM interop. I _was_ able to get it to...
> 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"); > >...