In software testing error guessing is a method in which experience and skill play an important role. As here possible bugs and defects are guessed in the areas where formal testing would not work. That’s why it is also called experience-based testing which has no specific method of testing. This is not a formal way… Continue reading Error Guessing in Software Testing
Month: May 2024
Adding Item Fields to Transaction Records for Advanced PDF Usage
One of the limitations of Advanced PDF is that for each line in the transaction record, it can only read the fields that are explicitly on the transaction record. It cannot traverse over to the item record and read those fields. We can source item fields on Advanced PDFs by adding those fields to transaction… Continue reading Adding Item Fields to Transaction Records for Advanced PDF Usage
Uses of WP activity log plugin
The WP Activity Log plugin is a tool designed for WordPress websites to keep track of user and site activities. It’s particularly useful for site administrators and owners who want to monitor changes, user logins, and other important events happening on their WordPress site. Here are some key features commonly found in WP Activity Log… Continue reading Uses of WP activity log plugin
To add new custom role in wordpress
To add a new custom user role in WordPress, you typically need to use code. Here’s a basic outline of the process: Create a new custom role: You can use the add_role() function in WordPress to create a new role. This function accepts four parameters: the role name, the display name, capabilities (optional), and the… Continue reading To add new custom role in wordpress
Fixing Broken Internal Links on Your WordPress Website: A Comprehensive Guid
To address the issue of broken internal links on a WordPress website, you can use several tools and plugins designed specifically for this purpose. Here are the steps you should follow: 1. Identify Broken Links First, confirm the broken links identified by Ahrefs. You can use additional tools to ensure you have a comprehensive list… Continue reading Fixing Broken Internal Links on Your WordPress Website: A Comprehensive Guid
Merging Saved Search and SuiteQL Queries
It is possible to execute a SuiteQL query that will run exclusively for the results of a saved search. We can run a saved search and can write queries only to be executed for the data or results of the saved search result. Example: let internalIds = []; inventoryitemSearchObj.run().each(function (result) { internalIds.push(result.id); return true; });… Continue reading Merging Saved Search and SuiteQL Queries
search.lookupFields Function
In NetSuite’s SuiteScript, the search.lookupFields function is used to perform a direct lookup of a record’s fields without having to load the entire record. This can be useful for retrieving specific field values quickly and efficiently. Here’s a basic example demonstrating how to use search.lookupFields in SuiteScript 2.0: /** * @NApiVersion 2.x * @NScriptType UserEventScript… Continue reading search.lookupFields Function
Gorilla Testing
Gorilla Testing is a type of software testing which is performed on a module based on some random inputs repeatedly and checks the module’s functionalities and confirms no bugs in that module. So based on the pattern of Gorilla Testing, it is also known as Torture Testing, Fault Tolerance Testing or Frustrating Testing. It is… Continue reading Gorilla Testing
Retrieve the count of Quantity Pricings from an item record for use in scripting
The field “price1headercount” can be used to retrieve the count of quantity pricing permitted for an item, and a loop can be implemented to customize them based on this count. Example script: define([‘N/record’], /** * @param{email} email * @param{record} record * @param{runtime} runtime * @param{search} search */ (record) => { /** * Defines the function… Continue reading Retrieve the count of Quantity Pricings from an item record for use in scripting
Pairwise Software Testing
Pairwise Testing is a type of software testing in which permutation and combination method is used to test the software. Pairwise testing is used to test all the possible discrete combinations of the parameters involved. Pairwise testing is a P&C based method, in which to test a system or an application, for each pair of… Continue reading Pairwise Software Testing