Package

Source Code of Maximize

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;


public class Maximize {

  public static void main(String[] args) throws InterruptedException {
    WebDriver dr = new ChromeDriver();
    Thread.sleep(2000);
   
    System.out.println("maximize browser");
    dr.manage().window().maximize();
    Thread.sleep(2000);
   
    System.out.println("browser will be close");
    dr.quit()
  }

}
TOP

Related Classes of Maximize

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.