I want to check if Internet Explorer window is in fullscreen mode or not?
I use driver.Manage().Window.Maximize();
It maximizes window only but does not switched to FullScreen view.
Is there any method?
I want to check if Internet Explorer window is in fullscreen mode or not?
I use driver.Manage().Window.Maximize();
It maximizes window only but does not switched to FullScreen view.
Is there any method?
Selenium web driver do not have the API to achieve the Full screen as per your post. But you can achieve it through send keys method of windows. Try below code.
System.Windows.Forms.SendKeys.SendWait("{F11}");