到目前为止,我在我的本地桌面上使用了一个路径,其中图像在那里:
val addInvoiceScanButton: WebElement = driver.findElement(By.className("cloudinary-fileupload"))
addInvoiceScanButton.sendKeys("/Users/username/Desktop/111.png")
现在,我将111.png图像添加到intellij中的资源文件夹中,现在我想知道如何将其引用到桌面上的照片中。?
感谢
答案 0 :(得分:1)
您可以使用优秀的旧Java API查找资源文件的完整路径:
val filePath: String = this.getClass.getClassLoader.getResource("111.png").getFile
然后像以前一样继续:
addInvoiceScanButton.sendKeys(filePath)