无头模式是用来没有屏幕的电脑的,那么PhantomJS和HtmlUnit是如何计算出最大大小的呢?
对于 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);