gpt4 book ai didi

java - 如何在intellij中引用图像?

转载 作者:行者123 更新时间:2023-12-01 10:14:11 24 4
gpt4 key购买 nike

到目前为止,我在本地桌面上使用了图像实际存在的路径:

val addInvoiceScanButton: WebElement = driver.findElement(By.className("cloudinary-fileupload"))
addInvoiceScanButton.sendKeys("/Users/username/Desktop/111.png")

现在,我将 111.png 图像添加到 intellij 中的资源文件夹中,现在我想知道如何引用它而不是桌面中的照片..?

谢谢

最佳答案

您可以使用古老的 Java API 来查找资源文件的完整路径:

val filePath: String = this.getClass.getClassLoader.getResource("111.png").getFile

然后像以前一样继续:

addInvoiceScanButton.sendKeys(filePath)

关于java - 如何在intellij中引用图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36006434/

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