I would like to move my browser window to the left or right side of the screen. Manually I would press[WINDOW] + [LeftArrow] (or [RightArrow]) to achieve this.
I've read this one but it's for Java (see comments) but I can't find a way to press the windows key when using C#.
My best option seems to be:
driver.Manage().Window.Position = new Point(x-coord, y-coord);
driver.Manage().Window.Size = new Size(myWidth,myHeight);
but seems to be a bit fiddly, and I'm sure there is a better way.
I have also tried:
Actions action = new Actions(driver);
action.SendKeys(Keys. )
Then Keys doesn't have the windows key...