Data-driven testing is a software testing approach that involves testing a software application with a variety of inputs and expected results. In this method, test cases are developed based on the different sets of input data available. The test data is used to define the expected output for each test case. This testing approach helps… Continue reading What is Data Driven Testing
Tag: Testing
State Transition Testing
State transition testing is a type of testing that the system that is tested by transitioning between its different states and verifying that the correct behavior is exhibited for each state transition. This testing ensures that the system behaves correctly as it moves from one state to another. To perform state transition testing we would… Continue reading State Transition Testing
Penetration Testing
It is a form of cyberattack done to understand the situation of the security of the system. People often confuse this test with the vulnerability assessment test. So penetration test is composed of some methods or instructions whose main aim is to test the organization’s security. This test proved to be helpful for organizations because… Continue reading Penetration Testing
Automation Testing vs Manual Testing
Automation Testing Automation testing is a process of changing any manual test case into the test scripts by using automation testing tools, and scripting or programming language is called automation. Automation testing is used to increase the efficiency, effectiveness, and coverage of Software testing. Automation test engineer uses automation testing tools to automate the manual… Continue reading Automation Testing vs Manual Testing
Prioritize Test Cases in TestNG
How to prioritize test cases (For selenium Automation – TestNG Framework) When Multiple test cases are written under one class, it will execute according to the alphabetical order(ASCII), for making it execute based on our condition, we will prioritize the test cases → ByDefault all the tests in the class will be executed in the… Continue reading Prioritize Test Cases in TestNG
Taking Screenshots using Selenium webdriver
Testing steps: Load the page using the given URL (Log in | Register (formsscasb.tk)) Select the Sign-Up link Fill out all the fields and uncheck the checkbox Click the Create Account button Take the screenshot Quit browser Code: Script: public static void main(String[] args) throws Exception { WebDriverManager.edgedriver().setup(); EdgeOptions options = new EdgeOptions(); options.addArguments(“start-maximized”); WebDriver… Continue reading Taking Screenshots using Selenium webdriver
Search a item using selenium webdriver
Testing steps: Load the page using the given URL (Log in | Register (formsscasb.tk)) Login using valid credentials → (Email: radhika.rakesh@jobinandjismi.com, Password: test@12345) Select the search icon Enter an item into the search field → (62-058 High Yield MICR Toner Cartridge: HP LaserJet M506x) Select the Go button View and select the product to view… Continue reading Search a item using selenium webdriver
Test Cases for Landed Cost Calculation in Blueleaf
Test Cases for Landed Cost Calculation in Blueleaf
How to load a search in Script Debugger
Easy code to load a search in script Debugger