{"id":68,"date":"2023-09-09T12:45:55","date_gmt":"2023-09-09T12:45:55","guid":{"rendered":"https:\/\/softwaretestingstuff.com\/?p=68"},"modified":"2023-09-10T11:17:29","modified_gmt":"2023-09-10T11:17:29","slug":"c-vuser-functions-in-loadrunner","status":"publish","type":"post","link":"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html","title":{"rendered":"C Vuser Functions in LoadRunner"},"content":{"rendered":"\n

In LoadRunner, you can add C Vuser functions to any Vuser script in order to enhance the script. VuGen generates only a few of the general Vuser functions while you record. If required, the remaining functions can be manually programmed into a script.<\/p>\n\n\n\n

As per my knowledge, below is a list of general API functions for ANSI C scripts. It includes all protocols except for Java, VB, and GUI:
<\/p>\n\n\n\n

\"C<\/figure>\n\n\n\n

Transaction Functions:<\/strong><\/h2>\n\n\n\n

1. lr_end_sub_transaction –> Marks the end of a sub-transaction for performance analysis.<\/p>\n\n\n\n

2. lr_end_transaction –> Marks the end of a transaction.<\/p>\n\n\n\n

3. lr_end_transaction_instance –> Marks the end of a transaction instance for performance analysis.<\/p>\n\n\n\n

4. lr_fail_trans_with_error –> Sets the status of open transactions to LR_FAIL and sends an error message.<\/p>\n\n\n\n

5. lr_get_trans_instance_duration –> Gets the duration of a transaction instance specified by its handle.<\/p>\n\n\n\n

6. lr_get_trans_instance_wasted_time –> Gets the wasted time of a transaction instance by its handle.<\/p>\n\n\n\n

7. lr_get_transaction_duration –> Gets the duration of a transaction by its name.<\/p>\n\n\n\n

8. lr_get_transaction_think_time –> Gets the think time of a transaction by its name.<\/p>\n\n\n\n

9. lr_get_transaction_wasted_time –> Gets the wasted time of a transaction by its name.<\/p>\n\n\n\n

10. lr_resume_transaction –> Resumes collecting transaction data for performance analysis.<\/p>\n\n\n\n

11. lr_resume_transaction_instance –> Resumes collecting transaction instance data for performance analysis.<\/p>\n\n\n\n

12. lr_set_transaction_instance_status –> Sets the status of a transaction instance.<\/p>\n\n\n\n

13. lr_set_transaction_status –> Sets the status of open transactions.<\/p>\n\n\n\n

14. lr_set_transaction_status_by_name –> Sets the status of a transaction.<\/p>\n\n\n\n

15. lr_start_sub_transaction –> Marks the beginning of a subtransaction.<\/p>\n\n\n\n

16. lr_start_transaction –> Marks the beginning of a transaction.<\/p>\n\n\n\n

17. lr_start_transaction_instance –> Starts a nested transaction specified by its parent\u2019s handle.<\/p>\n\n\n\n

18. lr_stop_transaction –> Stops the collection of transaction data.<\/p>\n\n\n\n

19. lr_stop_transaction_instance –> Stops collecting data for a transaction specified by its handle.<\/p>\n\n\n\n

20. lr_wasted_time –> Removes wasted time from all open transactions.<\/p>\n\n\n\n

Command Line Parsing Functions:<\/strong><\/h2>\n\n\n\n

1. lr_get_attrib_double –> Retrieves a double type variable used on the script command line.<\/p>\n\n\n\n

2. lr_get_attrib_long –> Retrieves a long type variable used on the script command line.<\/p>\n\n\n\n

3. lr_get_attrib_string –> Retrieves a string used on the script command line.<\/p>\n\n\n\n

Informational Functions:<\/strong><\/h2>\n\n\n\n

1. lr_user_data_point –> Records a user-defined data sample.<\/p>\n\n\n\n

2. lr_whoami –> Returns information about a Vuser to the Vuser script. Not applicable for Application Management.<\/p>\n\n\n\n

3. lr_get_host_name –> Returns the name of the host executing the Vuser script.<\/p>\n\n\n\n

4. lr_get_master_host_name –> Returns the name of the machine running the LoadRunner Controller or Tuning Console. Not applicable for Application Management.<\/p>\n\n\n\n

String Functions:<\/strong><\/h2>\n\n\n\n

1. lr_eval_string –> Replaces a parameter with its current value.<\/p>\n\n\n\n

2. lr_save_string –> Saves a null-terminated string to a parameter.<\/p>\n\n\n\n

3. lr_save_var –> Saves a variable length string to a parameter.<\/p>\n\n\n\n

4. lr_save_datetime –> Saves the current date and time to a parameter.<\/p>\n\n\n\n

5. lr _advance_param –> Advances to the next available parameter.<\/p>\n\n\n\n

6. lr _decrypt –> Decrypts an encoded string.<\/p>\n\n\n\n

7. lr_eval_string_ext –> Retrieves a pointer to a buffer containing parameter data.<\/p>\n\n\n\n

8. lr_eval_string_ext_free –> Frees the pointer allocated by lr_eval_string_ext.<\/p>\n\n\n\n

9. lr_save_searched_string –> Searches for an occurrence of string in a buffer and saves a portion of the buffer, relative to the string occurrence, to a parameter.<\/p>\n\n\n\n

Message Functions:<\/strong><\/h2>\n\n\n\n

1. lr_debug_message –> Sends a debug message to the Output window or the Business Process Monitor log files.<\/p>\n\n\n\n

2. lr_error_message –> Sends an error message to the Output window or the Business Process Monitor log files.<\/p>\n\n\n\n

3. lr_get_debug_message –> Retrieves the current message class.<\/p>\n\n\n\n

4. lr_log_message –> Sends a message to a log file.<\/p>\n\n\n\n

5. lr_output_message –> Sends a message to the Output window or the Business Process Monitor log files.<\/p>\n\n\n\n

6. lr_set_debug_message –> Sets a debug message class.<\/p>\n\n\n\n

7. lr_vuser_status_message –> Generates and prints formatted output to the Controller or Console Vuser status area. Not applicable for Application Management.<\/p>\n\n\n\n

8. lr_message –> Sends a message to the Vuser log and Output window or the Business Process Monitor log files.<\/p>\n\n\n\n

Run-Time Functions<\/strong><\/h2>\n\n\n\n

1. lr_load_dll –> Loads an external DLL.<\/p>\n\n\n\n

2. lr_peek_events –> Indicates where a Vuser script can be paused.<\/p>\n\n\n\n

3. lr_think_time –> Pauses script execution to emulate think time\u2014the time a real user pauses to think between actions.<\/p>\n\n\n\n

4. lr_continue_on_error –> Specifies an error handling method.<\/p>\n\n\n\n

5. lr_rendezvous –> Sets a rendezvous point in a Vuser script. Not applicable for Application Management.<\/p>\n\n\n\n

Also See:<\/strong> Other LoadRunner Tutorials<\/strong><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"

In LoadRunner, you can add C Vuser functions to any Vuser script in order to enhance the script. VuGen generates only a few of the general Vuser functions while you record. If required, the remaining functions can be manually programmed into a script. As per my knowledge, below is a list of general API functions […]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[17],"tags":[],"table_tags":[],"class_list":["post-68","post","type-post","status-publish","format-standard","hentry","category-tutorials"],"yoast_head":"\nC Vuser Functions in LoadRunner - Software Testing Stuff<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C Vuser Functions in LoadRunner - Software Testing Stuff\" \/>\n<meta property=\"og:description\" content=\"In LoadRunner, you can add C Vuser functions to any Vuser script in order to enhance the script. VuGen generates only a few of the general Vuser functions while you record. If required, the remaining functions can be manually programmed into a script. As per my knowledge, below is a list of general API functions […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html\" \/>\n<meta property=\"og:site_name\" content=\"Software Testing Stuff\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/tdipto\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-09T12:45:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-10T11:17:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.softwaretestingstuff.com\/wp-content\/uploads\/2023\/03\/C-Vuser-Functions.png\" \/>\n<meta name=\"author\" content=\"Rahnuma Tasnim\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@tanvir@softwaretestingstuff.com\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rahnuma Tasnim\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html\"},\"author\":{\"name\":\"Rahnuma Tasnim\",\"@id\":\"https:\/\/www.softwaretestingstuff.com\/#\/schema\/person\/dfbdb1ae4f4cda51ab99f60058c4324f\"},\"headline\":\"C Vuser Functions in LoadRunner\",\"datePublished\":\"2023-09-09T12:45:55+00:00\",\"dateModified\":\"2023-09-10T11:17:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html\"},\"wordCount\":848,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.softwaretestingstuff.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.softwaretestingstuff.com\/wp-content\/uploads\/2023\/03\/C-Vuser-Functions.png\",\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html\",\"url\":\"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html\",\"name\":\"C Vuser Functions in LoadRunner - Software Testing Stuff\",\"isPartOf\":{\"@id\":\"https:\/\/www.softwaretestingstuff.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.softwaretestingstuff.com\/wp-content\/uploads\/2023\/03\/C-Vuser-Functions.png\",\"datePublished\":\"2023-09-09T12:45:55+00:00\",\"dateModified\":\"2023-09-10T11:17:29+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#primaryimage\",\"url\":\"https:\/\/www.softwaretestingstuff.com\/wp-content\/uploads\/2023\/03\/C-Vuser-Functions.png\",\"contentUrl\":\"https:\/\/www.softwaretestingstuff.com\/wp-content\/uploads\/2023\/03\/C-Vuser-Functions.png\",\"width\":650,\"height\":350},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.softwaretestingstuff.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C Vuser Functions in LoadRunner\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.softwaretestingstuff.com\/#website\",\"url\":\"https:\/\/www.softwaretestingstuff.com\/\",\"name\":\"Software Testing Stuff\",\"description\":\"Unlock the power of efficient testing and elevate your testing game\",\"publisher\":{\"@id\":\"https:\/\/www.softwaretestingstuff.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.softwaretestingstuff.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.softwaretestingstuff.com\/#organization\",\"name\":\"Software Testing Stuff\",\"url\":\"https:\/\/www.softwaretestingstuff.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.softwaretestingstuff.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.softwaretestingstuff.com\/wp-content\/uploads\/2022\/12\/logo-sts.png\",\"contentUrl\":\"https:\/\/www.softwaretestingstuff.com\/wp-content\/uploads\/2022\/12\/logo-sts.png\",\"width\":3268,\"height\":455,\"caption\":\"Software Testing Stuff\"},\"image\":{\"@id\":\"https:\/\/www.softwaretestingstuff.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.softwaretestingstuff.com\/#\/schema\/person\/dfbdb1ae4f4cda51ab99f60058c4324f\",\"name\":\"Rahnuma Tasnim\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.softwaretestingstuff.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/41c8421a46bfdc7a8c3777359a8ce20e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/41c8421a46bfdc7a8c3777359a8ce20e?s=96&d=mm&r=g\",\"caption\":\"Rahnuma Tasnim\"},\"description\":\"Rahnuma is a technical content writer at software testing stuff. A software engineer by degree and a dynamic content creator by passion, she brings to table over 3 years of writing experience in tech niche. Combining her enthusiasm for writing and technology, she loves to share her thoughts on the latest tech trends.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/rahnuma-tasnim-770402216\/\",\"https:\/\/www.facebook.com\/tdipto\",\"https:\/\/x.com\/tanvir@softwaretestingstuff.com\"],\"url\":\"https:\/\/www.softwaretestingstuff.com\/author\/tanvirsoftwaretestingstuff-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"C Vuser Functions in LoadRunner - Software Testing Stuff","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html","og_locale":"en_US","og_type":"article","og_title":"C Vuser Functions in LoadRunner - Software Testing Stuff","og_description":"In LoadRunner, you can add C Vuser functions to any Vuser script in order to enhance the script. VuGen generates only a few of the general Vuser functions while you record. If required, the remaining functions can be manually programmed into a script. As per my knowledge, below is a list of general API functions […]","og_url":"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html","og_site_name":"Software Testing Stuff","article_author":"https:\/\/www.facebook.com\/tdipto","article_published_time":"2023-09-09T12:45:55+00:00","article_modified_time":"2023-09-10T11:17:29+00:00","og_image":[{"url":"https:\/\/www.softwaretestingstuff.com\/wp-content\/uploads\/2023\/03\/C-Vuser-Functions.png","type":"","width":"","height":""}],"author":"Rahnuma Tasnim","twitter_card":"summary_large_image","twitter_creator":"@tanvir@softwaretestingstuff.com","twitter_misc":{"Written by":"Rahnuma Tasnim","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#article","isPartOf":{"@id":"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html"},"author":{"name":"Rahnuma Tasnim","@id":"https:\/\/www.softwaretestingstuff.com\/#\/schema\/person\/dfbdb1ae4f4cda51ab99f60058c4324f"},"headline":"C Vuser Functions in LoadRunner","datePublished":"2023-09-09T12:45:55+00:00","dateModified":"2023-09-10T11:17:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html"},"wordCount":848,"commentCount":0,"publisher":{"@id":"https:\/\/www.softwaretestingstuff.com\/#organization"},"image":{"@id":"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#primaryimage"},"thumbnailUrl":"https:\/\/www.softwaretestingstuff.com\/wp-content\/uploads\/2023\/03\/C-Vuser-Functions.png","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html","url":"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html","name":"C Vuser Functions in LoadRunner - Software Testing Stuff","isPartOf":{"@id":"https:\/\/www.softwaretestingstuff.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#primaryimage"},"image":{"@id":"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#primaryimage"},"thumbnailUrl":"https:\/\/www.softwaretestingstuff.com\/wp-content\/uploads\/2023\/03\/C-Vuser-Functions.png","datePublished":"2023-09-09T12:45:55+00:00","dateModified":"2023-09-10T11:17:29+00:00","breadcrumb":{"@id":"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#primaryimage","url":"https:\/\/www.softwaretestingstuff.com\/wp-content\/uploads\/2023\/03\/C-Vuser-Functions.png","contentUrl":"https:\/\/www.softwaretestingstuff.com\/wp-content\/uploads\/2023\/03\/C-Vuser-Functions.png","width":650,"height":350},{"@type":"BreadcrumbList","@id":"https:\/\/www.softwaretestingstuff.com\/2009\/03\/c-vuser-functions-in-loadrunner.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.softwaretestingstuff.com\/"},{"@type":"ListItem","position":2,"name":"C Vuser Functions in LoadRunner"}]},{"@type":"WebSite","@id":"https:\/\/www.softwaretestingstuff.com\/#website","url":"https:\/\/www.softwaretestingstuff.com\/","name":"Software Testing Stuff","description":"Unlock the power of efficient testing and elevate your testing game","publisher":{"@id":"https:\/\/www.softwaretestingstuff.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.softwaretestingstuff.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.softwaretestingstuff.com\/#organization","name":"Software Testing Stuff","url":"https:\/\/www.softwaretestingstuff.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.softwaretestingstuff.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.softwaretestingstuff.com\/wp-content\/uploads\/2022\/12\/logo-sts.png","contentUrl":"https:\/\/www.softwaretestingstuff.com\/wp-content\/uploads\/2022\/12\/logo-sts.png","width":3268,"height":455,"caption":"Software Testing Stuff"},"image":{"@id":"https:\/\/www.softwaretestingstuff.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.softwaretestingstuff.com\/#\/schema\/person\/dfbdb1ae4f4cda51ab99f60058c4324f","name":"Rahnuma Tasnim","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.softwaretestingstuff.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/41c8421a46bfdc7a8c3777359a8ce20e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/41c8421a46bfdc7a8c3777359a8ce20e?s=96&d=mm&r=g","caption":"Rahnuma Tasnim"},"description":"Rahnuma is a technical content writer at software testing stuff. A software engineer by degree and a dynamic content creator by passion, she brings to table over 3 years of writing experience in tech niche. Combining her enthusiasm for writing and technology, she loves to share her thoughts on the latest tech trends.","sameAs":["https:\/\/www.linkedin.com\/in\/rahnuma-tasnim-770402216\/","https:\/\/www.facebook.com\/tdipto","https:\/\/x.com\/tanvir@softwaretestingstuff.com"],"url":"https:\/\/www.softwaretestingstuff.com\/author\/tanvirsoftwaretestingstuff-com\/"}]}},"_links":{"self":[{"href":"https:\/\/www.softwaretestingstuff.com\/wp-json\/wp\/v2\/posts\/68","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.softwaretestingstuff.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.softwaretestingstuff.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.softwaretestingstuff.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.softwaretestingstuff.com\/wp-json\/wp\/v2\/comments?post=68"}],"version-history":[{"count":0,"href":"https:\/\/www.softwaretestingstuff.com\/wp-json\/wp\/v2\/posts\/68\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.softwaretestingstuff.com\/wp-json\/wp\/v2\/media?parent=68"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.softwaretestingstuff.com\/wp-json\/wp\/v2\/categories?post=68"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.softwaretestingstuff.com\/wp-json\/wp\/v2\/tags?post=68"},{"taxonomy":"table_tags","embeddable":true,"href":"https:\/\/www.softwaretestingstuff.com\/wp-json\/wp\/v2\/table_tags?post=68"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}