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

Explain what can cause a selenium ide test to fail?

983


What are the capabilities of selenium ide?

1016


Mention what are the advantages of using git hub for selenium?

931


Explain the different exceptions in selenium webdriver.

940


How do I upload a file using selenium? I need to upload a word file during test execution.

939


Explain the difference between confirming and verifying commands?

1194


How can we capture screenshots in selenium?

1104


What is the difference between verify and assert commands?

1027


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

935


What are the verification points available in selenium?

1064


Can we edit recorded selenium ide test cases?

946


Tell me how to verify tooltip text using selenium?

883


Explain the fundamental difference between xpath and css selector.

1066


What is the selenium ide and what is it used for?

1142


What are driver.close and driver.quit in WebDriver? Which is more preferable?

924