I am developing an application and I need to send some info about the resolution of a browser's window and the resolution of a monitor.
The resolution is currently set to: 1920x1080. I want to send 800x600 as the resolution of the desktop.
Here's an example:
The desktop resolution is 800x600 and I set the chrome browser resolution to 480x320. I do this with the following snippet of code:
driver.Manage().Window.Size = new Size(480, 320);
How I can do this with Selenium? How can I properly send this info?