无头模式适用于没有屏幕的计算机,那么PhantomJS和HtmlUnit如何计算出最大化的尺寸?
答案 0 :(得分:1)
对于HtmlUnit,(默认)值在WebClientOptions
中private int screenWidth_ = 1024;
private int screenHeight_ = 768;
您可以将其更改为您喜欢的任何值:
final WebClient webClient = new WebClient(BrowserVersion.BEST_SUPPORTED);
webClient.getOptions().setScreenWidth(640);
webClient.getOptions().setScreenHeight(480);