<span>
<span class="glyphicon glyphicon-plus avatarUploacIcon"></span>
Upload profile image</span>
Here is the code I am currently using:
WebElement uploading=driver.findElement(By.cssSelector("div[class='form_advanced_wrapper my-events_host_wrapper'] span[class='glyphicon glyphicon-plus avatarUploacIcon']"));
uploading.click();
uploading.sendKeys("C:\pic.jpg");
I have been trying to upload an image but haven't been successful. Even after trying various methods, I have not been able to upload the image because my type is not 'File'. If anyone has successfully uploaded an image without using the File type, please share with me how you did it. Thank you!