First give the path of your file which you want to upload
Note: Supported file formats are doc,rtf,pdf,docx. And size max will be 300 Kb.
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class NaukriResumeUpload{
public static void main(String[] args) {
string uploadFile = “ D:\\resume.doc “;
WebDriver driver = new FirefoxDriver();
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
driver.get("http://www.naukri.com/");
driver.findElement(By.xpath("//a[text()='Post Resume']")).click();
driver.switchTo().frame(driver.findElement(By.id("Upload")));
driver.findElement(By.id("browse")).sendKeys(uploadFile );
}
}