Global variables store details so we don't need to type and maintain them in several places
For this purpose we'll create two Global Variables
Saving records with unique time stamps and identifiers helps monitoring and troubleshooting.
For this purpose we'll create one Reusable Rules.
Create Global Variables
Click: "Test Data"
Click: "+ Add"
Enter Type: Text
Enter Name: "URL_SALESFORCE_HOME"
Enter Value: [url of your Salesforce Hands-on Playground Org]
Click: "Add"
Click: "+ Add"
Enter Type: Text
Enter Name: "DATETIME_START_LOCAL"
Enter Value: "YYYY-MM-DD - HH:MM:SS"
Click: "Add"
Create a Reusable Rule
We'll use javascript to set a datetimestamp: DATETIME_START_LOCAL
Click: "Reusable Rules"
Click: "New Rule"
Enter Name: "UTIL-0001 - Set DATETIME_START_LOCAL"
Enter Label: "UTIL"
Copy-paste Steps from below
If needed, edit the GMT offset for your timezone.
Click: "Save"
execute JavaScript text starting from next line and ending with [END]
nd = new Date();
nd.setHours(nd.getHours() + 2); // Helsinki (Finland) = GMT + 2
var s = new String( nd.toISOString() );
var DATETIME_START_LOCAL = s.substr(0,10) + " - " + s.substr(11,8);
var trCommand = 'save value "' + DATETIME_START_LOCAL + '" into "DATETIME_START_LOCAL"';
testRigor.execute( trCommand );
[END]
Create Test Case T00004
Click: "Test Cases"
Click: "+ Add Test Case"
Enter Description: "T00004 - Create Account, Contact, Opportunity"
Copy-paste steps from below
Click: "Add and Run"
UTIL-0001 - Set DATETIME_START_LOCAL
login
// CREATE ACCOUNT //
open URL from string with parameters "${URL_SALESFORCE_HOME}/lightning/o/Account/new"
generate from template by string with parameters "!TEST ACCOUNT - ${DATETIME_START_LOCAL} - %%%-%%", then enter into "Account Name" and save as "AccountGenerated"
enter "TEST-ACCOUNT-NUMBER" into "Account Number"
select "Utilities" from "Industry"
click on "Save"
grab url and save it as "URL_Account"
check that page contains stored value "AccountGenerated"
// CREATE CONTACT FOR ACCOUNT //
open URL from string with parameters "${URL_Account}"
click "Contacts ("
click "New"
generate from template by string with parameters "First - %%%-%%", then enter into "First Name" and save as "ContactFirstNameGenerated"
generate from template by string with parameters "Last - ${DATETIME_START_LOCAL} - %%%-%%", then enter into "Last Name" and save as "ContactLastNameGenerated"
enter "!TEST CONTACT" into "TITLE"
click "Save"
click from string with parameters "${ContactFirstNameGenerated}"
grab url and save it as "URL_Contact"
check that page contains stored value "ContactFirstNameGenerated"
check that page contains stored value "ContactLastNameGenerated"
// CREATE OPPORTUNITY FOR ACCOUNT AND CONTACT//
open URL from string with parameters "${URL_Account}"
click "Opportunities ("
click "New"
generate from template by string with parameters "!TEST OPPORTUNITY - ${DATETIME_START_LOCAL} - %%%-%%", then enter into "Opportunity Name" and save as "OpportunityGenerated"
select "Qualification" from "Stage"
enter "9.9.2025" into "CloseDate"
enter "1.23" into "Amount"
// Populating a Lookup to Contact can be filled, too
// - in fresh Salesforce Hands-On Playground Orgs there is no Contact Lookup in Opportunity
// - feel free to create the field ("Primary Contact") and add it to Opportunity Layout
// - then uncomment next two lines
// enter from string with parameters "${ContactLastNameGenerated}" into "Primary Contact"
// click from string with parameters "${ContactFirstNameGenerated}"
click on "Save"
click from string with parameters "${OpportunityGenerated}"
grab url and save it as "URL_Opportunity"
check that page contains stored value "OpportunityGenerated"
Observe results
Observe Test Case
Scroll down to see the Run(s)
Observe the progress
Observe Records in Salesforce
Login to Salesforce
Check records
Account
Contact
Opportunity
Highlights from testRigor Test Case Run Screenshots