我正在尝试将图片上传到网站。
我正在使用#define
。以下代码应上传照片:
Selenium 2.45.0
我使用以下浏览器:
public void uploadPhoto(String filePath) {
filePath = filePath.replace("\\", "/");
WebElement fileInput = driver.findElement(By.xpath("//div[@class='qq-upload-button']/input[@type='file']"));
fileInput.sendKeys(filePath);
}
但是,我得到以下例外:
public WebDriver driver = new FirefoxDriver();
public JavascriptExecutor jse = (JavascriptExecutor)driver;
有什么建议我做错了吗? 感谢您的回复!