When trying to create buttons, links or input fields using latest development technologies like next js, react and angular etc there might be some times a default background color may appear. This can cause bugs for the developed website since they create a different background color different from the mockup. As solution we can use… Continue reading How to remove the blue highlight of button on mobile?
Month: August 2023
AMSKN-109- Purchase Request Module
Continuous Deployment (CI/CD) testing
Continuous Deployment (CI/CD) testing is the practice of continuously testing software throughout the development process to ensure that it is ready for deployment. It is an essential part of the CI/CD pipeline, which aims to automate the build, test, and deployment of software. CI/CD testing involves running automated tests on every code change or new… Continue reading Continuous Deployment (CI/CD) testing
Branch Software Testing
Branch Testing is defined as a testing method, which has the main goal to ensure that each one of the possible branches from each decision point is executed at least once and thereby ensuring that all reachable code is executed. In the branch testing, each outcome from a code module is tested as if the outcomes… Continue reading Branch Software Testing
Control Flow Software Testing
Control flow testing is a type of software testing that uses program’s control flow as a model. Control flow testing is a structural testing strategy. This testing technique comes under white box testing. For the type of control flow testing, all the structure, design, code and implementation of the software should be known to the testing team.… Continue reading Control Flow Software Testing
Types of animations
There are several A, each with its own unique characteristics, techniques, and applications. Here are some of the main types of animations: Traditional (2D) Animation: Traditional animation involves creating a series of hand-drawn or digitally generated frames that are played in sequence to create the illusion of motion.This type of animation can vary in style… Continue reading Types of animations
Stock Notification Extension
The Stock Notifications extension lets users sign up for an email notification alerting them when an out-of-stock item again becomes available. If enabled, users see a stock notification option on the Product Details pages. Logged in users can visit the Stock Notifications tab of their My Account page to view details of the items to… Continue reading Stock Notification Extension
Proposal for Creating Price List
Proposal for Creating Price List in Excel
BitBar software testing tools
BitBar is an open-source tool for macOS that allows users to place the output from any script or program into their Mac OS X menu bar. This enables the creation of custom widgets and plugins for the menu bar using various scripting languages. In essence, BitBar provides a way to display custom, frequently updated information… Continue reading BitBar software testing tools
Automatically Selecting Multiselect Field Values in NetSuite
This script demonstrates how to automatically select multiple values in a multi-select field using SuiteScript 2.0 in NetSuite. // Defining an array of values to be selected in the multi-select fieldvar strArrayValue = [“A”, “B”, “C”];// Loading the Record in dynamic mode var Rec = record.load({ type: “”, id: , isDynamic: true }); // Setting… Continue reading Automatically Selecting Multiselect Field Values in NetSuite