java使用(use)selenium chrome headless網頁截長圖

  1. 新聞資訊
  2. 技術百科
行業動态 公司新聞 案例分享 技術百科

java使用(use)selenium chrome headless網頁截長圖

來(Come)源:奇站網絡 浏覽量:3576 發布日期: 2020-12-07

1、pom

  1. <dependency>
  2. <groupId>org.seleniumhq.selenium</groupId>
  3. <artifactId>selenium-java</artifactId>
  4. </dependency>

2、腳本動态獲取網頁高度

  1. // 設置驅動地(land)址
  2. System.setProperty("webdriver.chrome.driver", "D:\\apps\\headless\\chromedriver.exe");
  3. ChromeOptions options = new ChromeOptions();
  4. // 設置谷歌浏覽器exe文件所在(exist)地(land)址
  5. options.setBinary("C:\\Users\\qizhan\\AppData\\Local\\Google\\Chrome\\Application\\chrome.exe");
  6. // 這(this)裏是(yes)要(want)執行的(of)命令,如需修改截圖頁面的(of)尺寸,修改--window-size的(of)參數即可
  7. options.addArguments("--headless", "--disable-gpu", "--window-size=1920,1200", "--ignore-certificate-errors");
  8. ChromeDriver driver = new ChromeDriver(options);
  9. // 訪問頁面
  10. driver.get("http://sina.com.cn");
  11. //執行腳本
  12. String js1 = "return document.body.clientHeight.toString()";
  13. String js1_result = driver.executeScript(js1) + "";
  14. int height = Integer.parseInt(js1_result);
  15. driver.manage().window().setSize(new Dimension(830, height + 100));
  16. // 頁面等待渲染時(hour)長,如果你的(of)頁面需要(want)動态渲染數據的(of)話一(one)定要(want)留出(out)頁面渲染的(of)時(hour)間,單位默認是(yes)秒
  17. Wait<WebDriver> wait = new WebDriverWait(driver, 3);
  18. wait.until(new ExpectedCondition<WebElement>() {
  19. public WebElement apply(WebDriver d) {
  20. // 等待前台頁面中 id爲(for)“kw”的(of)組件渲染完畢,後截圖
  21. // 若無需等待渲染,return true即可。 不(No)同頁面視情況設置id
  22. return d.findElement(By.id("app"));
  23. }
  24. });
  25. // 獲取到(arrive)截圖的(of)文件
  26. File screenshotFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
  27. if ((screenshotFile != null) && screenshotFile.exists()) {
  28. // 截取到(arrive)的(of)圖片存到(arrive)本地(land)
  29. FileOutputStream out = null;
  30. FileInputStream in = null;
  31. try {
  32. in = new FileInputStream(screenshotFile);
  33. out = new FileOutputStream("D:\\apps\\headless\\cut1.png");
  34. byte[] b = new byte[1024];
  35. while (true) {
  36. int temp = in.read(b, 0, b.length);
  37. // 如果temp = -1的(of)時(hour)候,說明讀取完畢
  38. if (temp == -1) {
  39. break;
  40. }
  41. out.write(b, 0, temp);
  42. }
  43. } catch (Exception e) {
  44. // TODO異常處理
  45. }
  46. }

廈門極極網絡科技有限公司

電話:13313868605

QQ:3413772931

地(land)址:廈門集美區軟件園三期


                    掃一(one)掃加我(I)咨詢