Is there a way to maximize the browser window using WebDriver (Selenium 2) with C#?
|
|
There's an outstanding issue to add this functionality to WebDriver, which can be tracked here: http://code.google.com/p/selenium/issues/detail?id=174 A workaround would be to use the
|
|||||||||
|
|
This works for IE and Firefox. Chrome does not work. There is a bug submitted for this on ChromeDriver project. Meanwhile, the get around for the chrome is to implement what Joey V. and Coder323 suggested.
|
|||
|
You can use something like this (C#):
|
|||||
|
|
This worked for me:
|
|||
|
|
|
If you are using the Chrome Driver you can set the capabilities
|
|||
|
|
|
For IE and Firefox:
For Chrome:
|
|||
|
|
|
There is a function that you can use to maximize the window in Python which is window_maximize(). And this is how I'm using it.Hope this helps -
|
|||
|
|
|
C# client drivers:
===> also add a reference to the .NET assembly "System.Windows.Forms" ... the only problem is that it's not positioned correctly |
||||
|
|
Works perfect good job and many thanks KrishPrabakar :) |
||||
|
|
|
Here's what worked for me in C#, firefoxDriver is global to the class: in the usings:
in the code:
|
|||
|
|
|
Through the below code i'm able to maximize the window,
|
||||
|
|
I used Jim's code, but slightly modified for use with WatiN and C# to maximize the browser. |
|||
|
|
|
You can use Selenium Emulation in WebDriver:
|
|||||||||
|
|
I used this solution
|
|||
|
|
|
Simply you can use the following code to maximize:
Another way to do:
|
|||
|
|
|
This is working fine for me.
|
|||
|
|

