Software Maintenance
Software maintenance is the process of modifying a software system that is already in use in the production environment. This phase is an essential phase of the Software Development Life Cycle (SDLC)
Software maintenance is the process of modifying a software system that is already in use in the production environment. This phase is an essential phase of the Software Development Life Cycle (SDLC)
Introduction In this post, we will discuss assumptions in JUnit tests. Before executing tests we can check out assumptions about the test using the Assume and its methods. If all the assumptions pass then the test is executed for pass /fail. Furthermore, if the assumptions fail then the test is ignored. Assume class has a […]
In this tutorial, we will learn how to write Test Cases for an application. Test cases should cover major functionality of the application and cover other non-functional aspects as well.
Maven Dependency Management Maven dependency management is easy in Eclipse IDE. One of the important features of Maven is dependency management. It handles the dependencies and their conflicts automatically under the cover. Maven dependency management You need to define all the required dependencies for the project explicitly in the POM.xml file. This information is read […]
Run test using RemoteWebDriver with Marionette In this post, we will run a sample test using RemoteWebDriver with Marionette. Earlier we have seen how to use Selenium Grid and setup Hub and Nodes Configuration. Selenium Grid https://www.testingdocs.com/what-is-selenium-grid/ Selenium Grid Configuration https://www.testingdocs.com/selenium-grid-hub-and-nodes-configuration/ Another, pre-requisite for running the program is the grid setup. Hence, I assume hub […]
In this tutorial, we will learn about different types of Selenese Commands. A command instructs Selenium what to perform. Collectively these commands are called APIs