我在一个文件夹中有4张图片,需要将所有图片一起上传到我的应用程序中。我使用sendKeys通过selenium上传了单个文件,但多文件上传是一个挑战!
答案 0 :(得分:1)
this.props.nextOne
注意:WebElement uploadElement = driver.findElement(By.xpath(" "));
//Single file upload
uploadElement.sendKeys("C:\\foldername\\abcd.png");
//Multi file upload - simultaneous
uploadElement.sendKeys("C:/foldername/firstImg.png \n C:/foldername/secondImg.png \n C:/foldername/thirdImg.png");
需要以空格