Browser Size trong Selenium WebDriver

Browser Size trong Selenium WebDriver

I. Set max size for browser trong Selenium WebDriver

Thông thường khi mở một trình duyệt như Chrome chẳng hạn, thì trình duyệt sẽ kích thước trình duyệt sẽ mặc định là rất nhỏ ( minimize). Chúng ta có thể phóng to cửa sổ trình duyệt bằng cách dùng hàm maximize().

				
					import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebDriver.Options;
import org.openqa.selenium.WebDriver.Window;
import org.openqa.selenium.firefox.FirefoxDriver;

public class Quit
{
	public static void main(String[] args) throws Exception
	{
		WebDriver driver=new FirefoxDriver();
		driver.get("https://selenium-mentor.com");
		// below line maximizes the browser window
		driver.manage().window().maximize();
	}
}
				
			

II. Kích thước browser trong Selenium

Chúng ta có thể lấy được kích thước của cửa sổ trình duyệt bằng cách sử dụng hàm getsize().

				
					import org.openqa.selenium.Dimension;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

public class GetSize
{
	public static void main(String[] args) throws Exception
	{
		WebDriver driver=new FirefoxDriver();
		driver.get("https://vietstartest.com/");
		// below lin will fetches the size of the window.
		Dimension size = driver.manage().window().getSize();
		System.out.println("The size of the window : "+size);
	}
}
				
			
				
					The output: The size of the window : (1550, 838)