Maximize browser window in Selenium Web Driver(3 ways how to get full screen in selenium webdriver)
1) The very first method which is given in their documentation is using maximize() command of selenium instance:
public static void main(String[] args) {
// Create a new instance of the Firefox driver
// And now use this to visit Google
WebDriver driver = new FirefoxDriver();
driver.get("http://www.google.com");
// Maximize browser window
driver.manage().window().maximize();
}
2) Maximize the browser window according to your system's current resolution using the toolkit utility which query the native operating system directly and is platform independent:
public static void main(String[] args) {
// Create a new instance of the Firefox driver
WebDriver driver = new FirefoxDriver();
//Set the upper left corner of the screen starting point
driver.manage().window().setPosition(new Point(0,0));
//define screen size
java.awt.Dimension screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize();
// define desired size
Dimension maxWindowSize = new Dimension((int) screenSize.getWidth(), (int) screenSize.getHeight());
// Maximize the browser window according to your system's current resolution(set desired size)
driver.manage().window().setSize(maxWindowSize);
}
3) Third method emulate enter to fullscreen mode, same as pressing F11:
public static void main(String[] args) {
// Create a new instance of the Firefox driver
// And now use this to visit Google
WebDriver driver = new FirefoxDriver();
driver.get("http://www.google.com");
// Find the body and then send F11
driver.findElement(By.tagName("body")).sendKeys(Keys.F11);
}
Very nice , thanks!
ОтветитьУдалитьThank You. It is so helpful.
ОтветитьУдалитьthanks for sharing this information
ОтветитьУдалитьBlue Prism Training in Bangalore
informatica Training in Bangalore
Azure DevOps training in Bangalore
Google Cloud Training in Bangalore
Android Training in Bangalore
Best Android Training Institute in Bangalore
RPA Training in Bangalore
tableau training in bangalore jayanagar
data science with python training in bangalore
no deposit bonus forex 2021 - takipçi satın al - takipçi satın al - takipçi satın al - takipcialdim.com/tiktok-takipci-satin-al/ - instagram beğeni satın al - instagram beğeni satın al - google haritalara yer ekleme - btcturk - tiktok izlenme satın al - sms onay - youtube izlenme satın al - google haritalara yer ekleme - no deposit bonus forex 2021 - tiktok jeton hilesi - tiktok beğeni satın al - binance - takipçi satın al - uc satın al - finanspedia.com - sms onay - sms onay - tiktok takipçi satın al - tiktok beğeni satın al - twitter takipçi satın al - trend topic satın al - youtube abone satın al - instagram beğeni satın al - tiktok beğeni satın al - twitter takipçi satın al - trend topic satın al - youtube abone satın al - instagram beğeni satın al - tiktok takipçi satın al - tiktok beğeni satın al - twitter takipçi satın al - trend topic satın al - youtube abone satın al - instagram beğeni satın al - perde modelleri - instagram takipçi satın al - instagram takipçi satın al - cami avizesi - marsbahis
ОтветитьУдалить