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 »
TestNG is a testing framework mainly used for unit testing of the Java projects. The Testng has pre-defined annotations and attributes associated with the annotations would help to verify the… Read more »
Pipelines allows Jenkins to support continuous integration (CI) and Continous Delivery (CD). Pipeline are nothing but the Jenkins jobs the simple text scripts are based on Groovy Programming language. Pipeline… Read more »
Before getting into this tutorial please read the information about the Sonarlint by clicking on this link. Sonarlint helps the developer analyzes the code quality on the fly and displays… 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 »
TestNG is a java framework useful to execute the Unit Tests in a java project. We can even TestNG to automate the Selenium Tests in the Project.In TestNG xml file,… Read more »
TestNG allows you to group your tests and also allows to pass Test Parameters using parameter tag in the TestNG xml file. You can then execute one or more specific… Read more »
PhantomJS is a headless web browser scriptable with JavaScript which is similar to HTMLUnitDriver. Click on this link to view the examples of the HTMLUnitDriver. PhantomJS runs on Windows, macOS,… Read more »
List is a type of Collection mainly useful to store the Objects which are duplicates as well. Its available in the package java.util.List. The behavior of the List is implemented… 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 »