gpt4 book ai didi

java - 如何更改名为时间戳的文件夹的截屏路径?

转载 作者:行者123 更新时间:2023-11-30 02:27:36 25 4
gpt4 key购买 nike

我使用以下脚本拍摄了 appium 测试的屏幕截图。

String path;
try {
WebDriver augmentedDriver = new Augmenter().augment(driver);
File source = ((TakesScreenshot)augmentedDriver).getScreenshotAs(OutputType.FILE);
path = "/Users/admin/Desktop/newfolder" + source.getName();
org.apache.commons.io.FileUtils.copyFile(source, new File(path));
}
catch(IOException e) {
path = "Failed to capture screenshot: " + e.getMessage();
}

我想将它们带到一个以时间戳命名的文件夹。

但现在我将它们带到这样命名的桌面 enter image description here

如何在appium测试期间提供保存这些屏幕截图的文件夹路径?

最佳答案

尝试创建带有时间戳名称的文件夹:String.valueOf(new Timestamp(System.currentTimeMillis())).replace(":", "-")

关于java - 如何更改名为时间戳的文件夹的截屏路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45234800/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com