Template for PHP Coding Standard

PHP Coding Standards Result Verified whether the script followed the PSR-2 coding standard Verified whether the file should start with <?php tag and end with ?> tag   Verified whether file should contain declare(strict_types=1); statement   Verified whether all files must contain a header stating namespace and licensing information    Verified whether the copyright header… Continue reading Template for PHP Coding Standard

Template for Adobe Commerce (jQuery)

Adobe Commerce Coding Standards Template ————————————————— Adobe Commerce coding standard: (jQuery) Result Verified whether proper Source Code Repository has been provided   Verified whether script followed literal Namespace rule   Verified whether braces are used for multiline codes for a better understanding   Verified whether semicolons are used to end statements   Verified whether to… Continue reading Template for Adobe Commerce (jQuery)

Template for SASS Coding Standards (QA)

SASS Coding Standards Template ————————————— SASS Coding standards: Result Verified whether the Proper indents are provided on the script (2 spaces)   Verified whether meaningful white spaces are provided on the script   Verified whether the “$” symbol is used to declare variables   Verified whether the URLs are quoted   Verified whether the background… Continue reading Template for SASS Coding Standards (QA)

Importance of Test Case Documentation

Test case documentation is important for manual testing for several reasons Ensures completeness: Test case documentation ensures that all the features and functions of the application under test have been tested. It helps testers to make sure that no critical functionality is left untested. Provides clarity: Test case documentation provides clarity on the expected behavior of the application under test. It helps testers to understand what the application should do and how it should behave in different scenarios. Helps in regression testing: Test case documentation provides a record of the tests that have been performed. This makes it easier for testers to perform regression testing in the future and ensure that new changes to the application do not break existing functionality. Facilitates collaboration: Test case documentation helps testers and other stakeholders to collaborate more effectively. It helps to ensure that everyone has a shared understanding of the application under test and the tests that need to be performed. Improves accountability: Test case documentation helps to establish accountability for testing. It ensures that testers are responsible for testing specific features or functions and helps to identify the root cause of defects if they are found In summary, test case documentation is important for manual testing because it ensures completeness, provides clarity, facilitates collaboration, helps in regression testing, and improves accountability. It helps to ensure that the application under test meets the requirements and is of high quality A Test Case Template contains -> Name… Continue reading Importance of Test Case Documentation

The difference between Keyword Driven Testing and Data Driven Testing

The fundamental principle of Data-driven testing is that you run your test using a variety of input data to make sure that the application will function as intended for a range of different values. Using data as inputs to your script operations is how this strategy works. Every data set in the script serves as… Continue reading The difference between Keyword Driven Testing and Data Driven Testing

Playwright Automation Tool

What is Playwright?Built by Microsoft, Playwright is a Node.js library that, with a single API, automates Chromium, Firefox, and WebKit. These APIs can be used by developers writing JavaScript code to create new browser pages, navigate to URLs and then interact with elements on a page. In addition, since Microsoft Edge is built on the… Continue reading Playwright Automation Tool

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