Summary
This document explains how to create multiple dummy records on any table for testing your code, workflow, or functionalities.
Instructions
GO to System Definition -> Scripts - Background in your instance and run the following script. Modify the script to your requirements before running.
var count = 0;
var number = NUMBER_OF_RECORDS; //Enter the number of records to be create here
while (count< number) {
var rec = new GlideRecord('NAME_OF_THE_TABLE'); //Enter the name of the table here
rec.initialize();
rec.insert();
count++;
}