Postscript
Create and run various assertions by adding custom codes.
Writing Postscripts
const apple = {
"genus": "Malus",
"name": "Apple",
"id": 6,
"family": "Rosaceae",
"order": "Rosales",
...
}
const appleFamily = apple.family; // returns "Rosaceae"const response = $; //returns the complete server response
const responseProperty = response.propertyName; // or response["propertyNameavascript"]
// returns the accessed property value inside the responseAccessing Postscript Extractions
Freedom of Coding
Debugging Postscript
Using Built-in Functions
Last updated