How to set browser window size for Chrome and Opera launched by Selenium WebDriver in incognito/private mode?
问题 I'm working on application which will execute tests on multiple browser types (Chrome, FireFox, Internet Explorer and Opera). I found the way how to launched them in incognito/private modes (How to open incognito/private window with Selenium WD for different browser types?) and set window size (Browser window control #174): Window window = driver.manage().window(); window.setPosition(new Point(0, 0)); window.setSize(new Dimension(width, height)); But this code does not work in all cases: +---