C#
Maximizing the window
driver.Manage().Window.Maximize();
This is fairly straightforward, ensures that our currently active window is maximized.
Position of the window
driver.Manage().Window.Position = new System.Drawing.Point(1, 1);
Here we essentially move the currently active window t...