ROBOT framework

“Robot Framework is a generic open source automation framework. It can be used for test automation and robotic process automation (RPA).” robotframework.org Setting up a Robot framework environment with Selenium library to run on VS code in Windows environment: Steps : How a Robot framework codes look like : https://robotframework.org Sources : https://datatofish.com/add-python-to-windows-path/embed/#?secret=akoh0wl6Ai#?secret=lPIEh8mK8p https://robotframework.org/?tab=1#getting-started https://robotframework.org/SeleniumLibrary https://code.visualstudio.com/download

Software Test Types

In overal there are 4 types of tests but in details we can increase this number to a lot more depending on the need and use case of the tests. Here are 4 main test types and their sub categories : According to ISTQB definition, testing types are “means of clearly defining the objective of a…

Functional Testing

Functional testing verifies that each function of the software operates in required specification. Functional testing shows “What the system does”. The goal of this testing is to check whether the system is functionally perfect. In the execution of functional testing these steps are considered to be taken: In general there are two approaches to fuctional testing:…

Change Related Testing

Change related testing ensures that previously corrected bugs does not accidentally appeares in a new version of the software. There are two subtypes of Change related testing: How Confirmation testing and Regression testing differ? They are executed in order with one after another. Firstly we perform Confirmation testing to verify if the reported bugs has…