Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

how to upload file other than autoit

Answer Posted / bharat

You can use ROBOT API jars to upload the file. Simply trigger the browse button and when you need to give the location of your file to upload use Robot API to send the location and then again using Robot API press enter.



try {
//Setting clipboard with file location
setClipboardData(fileLocation);
//native key strokes for CTRL, V and ENTER keys
Robot robot = new Robot();

robot.keyPress(KeyEvent.VK_CONTROL);
robot.keyPress(KeyEvent.VK_V);
robot.keyRelease(KeyEvent.VK_V);
robot.keyRelease(KeyEvent.VK_CONTROL);
robot.keyPress(KeyEvent.VK_ENTER);
robot.keyRelease(KeyEvent.VK_ENTER);
} catch (Exception exp) {
exp.printStackTrace();
}

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to insert a start point in selenium ide?

934


How can we create object repository in selenium?

972


What are the different types of annotations which are used in selenium?

968


Explain me how can we capture screenshots in selenium?

887


Explain in selenium ide how can you debug the tests?

866


How to find the xpath of web table elements.in chrome or internet explorer.or without using fire bug.?

1589


How can we deal with pop-up windows based on?

945


Explain the different kinds of frameworks in automation?

1034


What is the selenium's recording language?

988


How is testng better than junit?

924


How to handle https website in selenium? Or how to accept the ssl untrusted connection?

855


How to validate the dropdown value contains specific value or not?

822


What are the types of waits available in selenium webdriver?

880


How to change the url on a webpage using selenium web driver?

918


How do perform drag and drop using selenium webdriver?

925