17 Eylül 2019 Salı

Selenium WebDriver.Window Arayüzü

maximize metodu
Örnek
Şöyle yaparız.
// Launch the application
driver.get("https://www.stackoverflow.com/");
//Resize current window to the set dimension
driver.manage().window().maximize(); 
Örnek
Şöyle yaparız.
driver.manage().window().maximize();
setSize metodu
Şöyle yaparız.
// Launch the application
driver.get("https://www.stackoverflow.com/");
Dimension d = new Dimension(300,1080);
//Resize current window to the set dimension
driver.manage().window().setSize(d);

Hiç yorum yok:

Yorum Gönder