Upload

How To Use Java Robot To Upload File In Selenium Webdriver

Uploading files is a common task in web-based applications. It is not easy to implement in selenium WebDriver automation, because the upload file component will popup a select file dialog that can not be handled by the selenium WebDriver. But java.awt.Robot provide a method to interact with OS native window dialog, this article will show …

How To Use Java Robot To Upload File In Selenium Webdriver Read More »

Selenium Upload File Example

Upload files is a very general function on the web. But when you want to implement it in the selenium testing automation script, a dialog box will always pop up which selenium can not handle. This article will tell you 3 methods to use selenium webdriver to upload files on an Html web page.