Selenium UI 자동화 테스트 화면 캡 처 기능 인 스 턴 스 코드
이러한 수 요 를 바탕 으로 Selenium 의 화면 캡 처 기능 을 사용 할 수 있 습 니 다.
구현 코드 는 다음 과 같 습 니 다:
import java.io.File;
import java.io.IOException;
import org.apache.commons.io.FileUtils;
import org.apache.commons.lang3.time.DateUtils;
import org.openqa.selenium.OutputType;
import org.openqa.selenium.TakesScreenshot;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.interactions.Actions;
public static void takeScreeshot(String screenPath, WebDriver chrome){
try {
// OutputType.FILE getScreenshotAs() , 。
File scrFile = ((TakesScreenshot) chrome)
.getScreenshotAs(OutputType.FILE); // , , temp
FileUtils.copyFile(scrFile, new File(screenPath)); // FileUtils copyFile() getScreenshotAs() 。
} catch (IOException e) {
System.out.println("Screen shot error: " + screenPath);
System.out.println(" :"+screenPath);
} catch (Exception e) {
// TODO: handle exception
}
}
public static void takeScreenshot(WebDriver chrome,String imgName) {
String screenName=imgName+DateUtils.MILLIS_PER_DAY+".jpg";
String fileString= "D:\\selenium\\SchoolpalERP_QTP\\image";
if (!(new File(fileString).isDirectory())) { //
new File(fileString).mkdir(); //
}
File dir = new File(fileString);
if (!dir.exists())
dir.mkdirs();
String screenPath = dir.getAbsolutePath() + "\\" + screenName;
takeScreeshot(screenPath, chrome);
}
셀 레 니 움 의 UI 자동화 테스트 화면 캡 처 기능 에 관 한 인 스 턴 스 코드 는 바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.여러분 께 참고 가 되 고 저희 도 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python Selenium XPath 텍스트 내용에 따라 요소 찾기 방법문제 현상 요소의 속성에 id,name이 없습니다.class가 있지만 비교적 대중적이고 위치도 고정되지 않는다.예를 들어 페이지 번호의 다음 페이지;그러면 어떻게 이 원소를 찾아야 합니까? 해결 방법 text() t...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.