One of my friend has asked me a question that below is the code to maximize the window.
driver.manage().window().maximize();
what is manage() here?
As per my knowledge manage() is the abstract method.
Please anyone explain the meaning of below line, how we are able to use maximize() method by writing below code:
driver.manage().window().maximize();
Thanks in advance !!
解决方案
Based on your question- driver is an instance of concrete class which implements WebDriver interface.
manage() method returns an "Option interface" referred to as WebDriver.Options
When you type driver.manage(). -> gives you list of methods to access.
Ex. you can call a method window()->driver.manage().window().
This would further return the interface for managing window referred to as WebDriver.Window interface for managing current window.
WebDriver.Window interface has a method called maximize().
It can be called using following code: driver.manage().window().maximize(). This would maximize current window if not already maximized.
Hope the details were helpful.Keep learning.