LoginSignup
23
21

More than 5 years have passed since last update.

webdriverでウィンドウサイズを変更する

Posted at
// 指定のウィンドウサイズに変更
int width = 1000;
int height = 500;
driver.manage().window().setSize(new Dimension(width, height));

// 最大化
driver.manage().window().maximize();
23
21
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
23
21