How to maximize the browser window in Selenium WebDriver (Selenium 2) using C#?

前端 未结 28 2221
悲&欢浪女
悲&欢浪女 2020-11-29 18:20

Is there any way to maximize the browser window using WebDriver (Selenium 2) with C#?

28条回答
  •  醉梦人生
    2020-11-29 18:40

    using System.Windows.Forms;
    using System.Drawing;
    
    public static void MaximizeBrowser(this IE myBrowser)
    {
        myBrowser.SizeWindow(Screen.PrimaryScreen.WorkingArea.Width, Screen.PrimaryScreen.WorkingArea.Height);
    }
    

    I used Jim's code, but slightly modified for use with WatiN and C# to maximize the browser.

提交回复
热议问题