File upload in Selenium,Java,Robot Class
File Upload is achieved using the Java API java.awt.Robot class where awt stands for Abstract window Toolkit. 1. Robot class in java mainly useful to generate native system input events… Read more »
File Upload is achieved using the Java API java.awt.Robot class where awt stands for Abstract window Toolkit. 1. Robot class in java mainly useful to generate native system input events… Read more »
A Logger object is used to log messages for a specific system or application component. A Logger is useful to track the sequence of actions. Each Logger has a “Level”… Read more »
Apache POI (Poor Obfuscation Implementation File System) is the Java API for Microsoft Documents such as XLS,XLSX,DOC and PPT as well. HSSF (Horrible Spreadsheet Format) Read or write an Excel file… Read more »
Apache POI (Poor Obfuscation Implementation File System) is the Java API for Microsoft Documents such as XLS,XLSX,DOC and PPT as well. HSSF (Horrible Spreadsheet Format) Read or write an Excel file… Read more »
HyperLinks in HTML useful to navigate to another web-page. HyperLinks are defined using the tag name-a using an attribute name href. We need to define the Link text between the… Read more »
Map is a collection useful to store the things with a unique ID.Classes that implements Map are HashTable,LinkedHashMap,HashMap,HashTable. The HashMap is unsorted and unordered Map and useful to store the… Read more »
In TestNG we use the @DAtaProvider for passing the data values to the testcases. In majority of these cases the Data source used as an two dimensional Array,XLS or XLSX…. Read more »
TestNG is mainly used by the JAVA Developers to perform Unit Testing of the Code. This Framework is used mainly in Selenium as well to verify the outcome of the… Read more »
The java.awt.Robot class is mainly useful to perform native actions where keyword and mouse actions to be performed. This actions are helpful for automation. If the current platform configuration does… Read more »
Selenium-Grid allows you run your tests on remote desktop against different Operating Systems like Windows,Linux,MAC and against different browsers like Opera,Safari,IE,Firefox and Chrome in parallel. Selenium-Grid allows running your tests… Read more »