Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Change position of Browser :

package methods_of_WebDriver;

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

public class ChangePositionOfBrowser {

public static void main(String[] args) throws InterruptedException {

System.setProperty("webdriver.chrome.driver","E:/Soft/chrome_driver2/chromedriver.exe");
WebDriver driver=new ChromeDriver();

driver.get("https://www.google.com/");

Thread.sleep(1000);

Point p = new Point(100,100);

driver.manage().window().setPosition(p);

You might also like