Java+Selenium3自動化入門9-Selenium中截圖方法-TakeScreenshot
阿新 • • 發佈:2019-01-30
在測試的過程中,很多情況下在我們測試遇到BUG時,或者需要驗證某個元素的狀態或者顯示的數值時,可以將螢幕擷取下來進行對比又或者在異常或者錯誤發生的時候將螢幕擷取並儲存起來,供後續分析和除錯所用,那麼在自動化測試過程中當然也是需要這些操作來輔助我們測試的,那麼今天我們就來學習一下如何通過selenium來截圖儲存。
首先今天我們是以擷取百度新聞的首頁來舉例:
第一步:建立一個類為:com.yumeihu.D1
第二步:建立一個java檔案為:ScreenShoot
第三步:建立資料夾:ScreenShoots 用來存放截圖的檔案
package com.yumeihu.D1; import java.io.File; import java.io.IOException; import java.util.concurrent.TimeUnit; import org.apache.commons.io.FileUtils; import org.openqa.selenium.By; import org.openqa.selenium.OutputType; import org.openqa.selenium.TakesScreenshot; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; public class ScreenShoot { public static void main(String[] args) throws Exception { WebDriver driver = new FirefoxDriver(); driver.manage().window().maximize(); driver.get("https://www.baidu.com/"); driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS); Thread.sleep(3000); System.out.println("已經成功進入:"+ driver.getTitle()); driver.findElement(By.xpath(".//*[@id='u1']/a[1]")).click(); //呼叫截圖方法 ,指定了OutputType.FILE做為引數傳遞給getScreenshotAs()方法,其含義是將擷取的螢幕以檔案形式返回 File src= ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE); try { // 拷貝截圖檔案到我們專案./Screenshots, //FileUtils.copyFile(file1,file2); file1,file2都是檔案型別File; 把file1拷貝到file2 FileUtils.copyFile(src, new File(".\\Screenshots\\screen.png")); System.out.println("已經截圖完畢"); } catch (IOException e) { System.out.println(e.getMessage()); } } }
執行結果如下:
到此,最簡單的截圖就完成了