gpt4 book ai didi

java - 如何在 Java 中使用 Selenium WebDriver 上传不同的文件名和最新的日期/时间戳

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

我的代码:

WebElement choosefile = driver.findElement(By.xpath("//*[@id='ctl00_MainContent_flUpload']"));
choosefile.sendKeys("/Users/ExcelFiles/test.xlsx");

我的问题:这里我只上传test.xlsx文件,如果我想上传带有.xlsx扩展名的不同文件名,该文件具有最新的日期和时间戳。请让我知道该怎么做。

最佳答案

查看this答案表明您可以通过以下方式做到这一点:

Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("MM_dd_yyyy_h:mm:ss a");
String formattedDate = sdf.format(date);

WebElement choosefile = driver.findElement(By.xpath("//*[@id='ctl00_MainContent_flUpload']"));
choosefile.sendKeys("/Users/ExcelFiles/test" + formattedDate + ".xlsx");

关于java - 如何在 Java 中使用 Selenium WebDriver 上传不同的文件名和最新的日期/时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45061487/

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