ドライバー オブジェクトを 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 中国語 Web サイトの他の関連記事を参照してください。