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 you can switch back from a frame?

851


How to handle hidden elements in selenium webdriver?

909


Explain how to iterate through options in test script?

1078


Explain what are the junits annotation linked with selenium?

911


What is the difference between driver.close() and driver.quit command?

931


How does one calculate the number of rows using selenium 2.0?

962


Explain how you will login into any site if it is showing any authentication popup for username and password?

1132


How to install use TestNG in selenium webdriver ?

961


What programing language is most useful for creating selenium evaluations?

896


Can we use selenium rc for tests driving on two different browsers on one operating system without selenium grid?

877


How to enter text in the HTML text box without invoking the SendKeys ()?

977


Which technique should you consider using throughout the script “if there is neither frame id nor frame name”?

911


What exactly is selenium remote-control (rc) tool?

974


How to download a file in selenium webdriver?

1009


When do you use selenium grid?

834