드라이버 개체를 TakeScreenshot 인터페이스로 변환하겠습니다.
드라이버 개체를 TakeScreenshot 인터페이스로 변환하겠습니다.
TakesScreenshot s = (TakesScreenshot)driver;
그런 다음 getScreenshotAs 메서드를 사용하여 이미지 파일을 가져오고 FileUtils.copyFile 메서드를 사용하여 파일을 지정된 위치에 복사합니다.
File sp=s.getScreenshotAs(OutputType.FILE); FileUtils.copyFile(sp, new File("path of image file"));
import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.OutputType; import org.openqa.selenium.TakesScreenshot; import org.apache.commons.io.FileUtils; import java.io.File; public class PrintScreenSimulate { public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "C:\Users\ghs6kor\Desktop\Java\chromedriver.exe"); WebDriver driver = new ChromeDriver(); driver.get("https://www.tutorialspoint.com/index.htm"); // screenshot capturing File src = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE); FileUtils.copyFile(src, new File("logopage.png")); driver.quit(); } }입니다.
위 내용은 Java에서 Selenium WebDriver를 사용하여 Print Screen 버튼 누르기를 시뮬레이션하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!