繁体   English   中英

如何使用 Selenium Java 使用 Krypton 捕获屏幕截图

[英]How to capture a screenshot using Krypton using Selenium Java

文件问题 第 3 行的错误 当前代码 第 3 行的错误 如果有可能的方法/代码在使用JAVA selenium的Krypton平台下捕获屏幕截图,我想寻求帮助。 我在标准化方面遇到了麻烦。 谢谢!

var driver = new ChromeDriver()
driver.get("https://login.bws.birst.com/login.html/")
File scrFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE)
FileUtils.copyFile(scrFile, new File("c:\\tmp\\screenshot.png"))

根据屏幕截图,导入/类似乎存在一些差异。 为了让事情更简单,在项目范围内创建目标文件夹,例如下面的屏幕截图目录:

截图文件夹

要使用Java捕获屏幕截图,您可以使用以下解决方案:

  • 代码块:

     package screenShot; import java.io.File; import java.io.IOException; import org.apache.commons.io.FileUtils; import org.openqa.selenium.OutputType; import org.openqa.selenium.TakesScreenshot; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.chrome.ChromeOptions; import org.openqa.selenium.support.ui.ExpectedConditions; import org.openqa.selenium.support.ui.WebDriverWait; public class takesScreenshot { public static void main(String[] args) throws IOException { System.setProperty("webdriver.chrome.driver", "C:\\\\Utility\\\\BrowserDrivers\\\\chromedriver.exe"); ChromeOptions options = new ChromeOptions(); options.addArguments("start-maximized"); options.addArguments("disable-infobars"); options.addArguments("--disable-extensions"); WebDriver driver = new ChromeDriver(options); driver.get("https://login.bws.birst.com/login.html/"); new WebDriverWait(driver, 20).until(ExpectedConditions.titleContains("Birst")); File scrFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE); FileUtils.copyFile(scrFile, new File(".\\\\Screenshots\\\\Mads_Cruz_screenshot.png")); } }
  • 捕获的图像:

Mads_Cruz_screenshot

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM