In the Create Connection panel provide the below details to setup a connection. Name your connection – Enter a clear and distinguishable name. API type – Choose your Shopify account API type: HTTP: Use traditional HTTP methods (GET, POST, PUT, DELETE) for straightforward interactions with individual resources. GraphQL: Use GraphQL for flexible, efficient queries and… Continue reading Set up a token connection to Shopify
Month: May 2025
OWASP ZAP- free and open-source security testing tool
OWASP ZAP (Zed Attack Proxy) is a free and open-source security testing tool used to find vulnerabilities in web applications. It’s developed by the OWASP Foundation and is widely used by both beginners and professionals for penetration testing and security assessment. Key Features of OWASP ZAP Intercepting Proxy Acts as a “man-in-the-middle” between the browser… Continue reading OWASP ZAP- free and open-source security testing tool
YouTrack- QA and Testing
Why Use YouTrack in QA and Testing? Centralized bug tracking Link test cases and defects easily Track QA tasks during sprints Automated workflows and notifications Custom fields and tags for test statuses, priorities, environments Best Suited For: Development and QA teams using JetBrains tools Teams preferring highly customizable workflows and UI Agile software teams managing… Continue reading YouTrack- QA and Testing
YouTrack – Bug Tracking & Issue Management Tools
YouTrack is an issue tracking and project management tool developed by JetBrains. It’s commonly used by software development and QA teams for tracking bugs, managing tasks, and handling agile project workflows. Key Features of YouTrack Issue Tracking Create, assign, prioritize, and track bugs, tasks, and enhancements with customizable issue fields and workflows. Agile Boards Supports… Continue reading YouTrack – Bug Tracking & Issue Management Tools
Types of dropdown in NetSuite
A Single arrow is displayed in the dropdown if the number of options is less than or equal to that mentioned in the set preference. If the options are greater than that mentioned in the Set Preference, the double arrow is displayed. The benefit of a double arrow dropdown is that, we can directly type… Continue reading Types of dropdown in NetSuite
Search for the filter some item committed in the pick picking ticket page
var transactionSearchObj = search.create({ type: “transaction”, settings:[{“name”:”consolidationtype”,”value”:”ACCTTYPE”}], filters: [ [[“type”,”anyof”,”SalesOrd”],”AND”,[“cogs”,”is”,”F”],”AND”,[“shipping”,”is”,”F”],”AND”,[“formulanumeric: case when ({item.type}NOT IN(‘Inventory Item’,’Kit/Package’,’Assembly’) AND {item.isfulfillable} =’T’ AND ({quantity} – nvl({quantityshiprecv},0)) >0 ) THEN 1 when {item.type}IN(‘Inventory Item’,’Kit/Package’,’Assembly’) AND {quantitypicked}!={quantity} AND {quantitycommitted}>0 then 1 else 0 end”,”equalto”,”1″],”AND”,[“taxline”,”is”,”F”],”AND”,[“status”,”noneof”,”SalesOrd:A”,”SalesOrd:G”,”SalesOrd:H”,”SalesOrd:C”,”SalesOrd:F”],”AND”,[“mainline”,”is”,”F”],”AND”,[“closed”,”is”,”F”]] ], columns: [ search.createColumn({ name: “trandate”, summary: “GROUP”, label: “Date” }), search.createColumn({ name: “tranid”, summary: “GROUP”, label:… Continue reading Search for the filter some item committed in the pick picking ticket page
Basic Test Cases for Sales Order PDF in NetSuite
Content Validation Header Information Verify that the company logo, name, address, and contact details are correctly displayed. Check the Sales Order number, date, and status (e.g., Pending Approval, Pending Fulfilment). Confirm that the customer’s details (name, address, phone, email) appear correctly. Line Item Details Validate item name, SKU/Item code, quantity, unit price, and amount for… Continue reading Basic Test Cases for Sales Order PDF in NetSuite
Bill of materials revision import
During the creation of a new BOM revision, the following fields are mandatory: Bill of Materials Name of BOM revision Assembly item name(if restricted to assemblies). While adding components, the quantity field is mandatory. If you want to add all the components in the same import as that of BOM revision creation, then add or… Continue reading Bill of materials revision import
Heuristic testing
Heuristic testing is a usability evaluation method used to identify usability problems in a user interface. It involves a set of principles or guidelines, known as heuristics, that evaluators use to assess the interface. The most commonly referenced set of heuristics was developed by Jakob Nielsen and includes ten general principles for interaction design. Here’s… Continue reading Heuristic testing
Introduction to Writing JSON Test Code in API Testing
In API testing, JSON (JavaScript Object Notation) is one of the most commonly used data formats for sending and receiving structured data between the client and server. Writing test code for JSON responses ensures that the API behaves as expected, returns correct data, and handles errors properly. 📌 Why JSON is Important in API Testing… Continue reading Introduction to Writing JSON Test Code in API Testing