我正在尝试使用Selenium Webdriver上传文件,但是在我上传文件时遇到了“元素不可交互”的问题
@Then("^Click on Select a file button$")
public void click_on_select_a_file_button() throws Throwable {
String filePath = "C:\\Users\\DELL\\Downloads\\複数アカウント登録 new T.csv";
WebElement selectFile = driver.findElement(By.xpath("//*[@id=\"validate-1\"]/div[2]/div/label"));
selectFile.sendKeys(filePath);
}