maximize metodu
Örnek
Ö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