{"id":832,"date":"2011-12-08T23:44:30","date_gmt":"2011-12-08T18:14:30","guid":{"rendered":"http:\/\/www.automationrepository.com\/?p=832"},"modified":"2011-12-09T00:21:00","modified_gmt":"2011-12-08T18:51:00","slug":"understanding-systemutil-run-syntax-with-examples","status":"publish","type":"post","link":"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/","title":{"rendered":"Understanding SystemUtil.Run syntax with examples"},"content":{"rendered":"<div style=\"font-family: Verdana; text-align: justify;\">\n<p>SystemUtil.Run is an inbuilt QTP command that lets you run a file or an application. Mostly SystemUtil.Run command is used to open browser with a specific URL. But there is much more that can be done with it. Here in this article, you&#8217;ll see various examples on how to use SystemUtil.Run for different purposes. <!--more-->Let&#8217;s first go through the syntax of SystemUtil.Run method &#8211;<\/p>\n<p><strong><em>SystemUtil.Run file, [params], [dir], [op], [mode]<\/em><\/strong><\/p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td valign=\"top\" width=\"91\"><strong><span style=\"font-family: Calibri;\">Argument<\/span><\/strong><\/td>\n<td valign=\"top\" width=\"547\"><strong><span style=\"font-family: Calibri;\">Description<\/span><\/strong><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"91\"><span style=\"font-family: Calibri;\">file<\/span><\/td>\n<td valign=\"top\" width=\"547\"><span style=\"font-family: Calibri;\">String Value [Mandatory]. <\/span><span style=\"font-family: Calibri;\">The name of the file you want to run.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"91\"><span style=\"font-family: Calibri;\">params<\/span><\/td>\n<td valign=\"top\" width=\"547\"><span style=\"font-family: Calibri;\">String Value [Optional]. <\/span><span style=\"font-family: Calibri;\">If the specified file argument is an executable file, use the params argument to specify any parameters to be passed to the application.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"91\"><span style=\"font-family: Calibri;\">dir<\/span><\/td>\n<td valign=\"top\" width=\"547\"><span style=\"font-family: Calibri;\">String Value [Optional]. <\/span><span style=\"font-family: Calibri;\">The default directory of the application or file.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"91\"><span style=\"font-family: Calibri;\">op<\/span><\/td>\n<td valign=\"top\" width=\"547\"><span style=\"font-family: Calibri;\">String Value [Optional]. <\/span><span style=\"font-family: Calibri;\">The action to be performed \u2013 open, edit, explore, find &amp; print.<\/span><span style=\"font-family: Calibri;\">If this argument is blank (&#8220;&#8221;), the open operation is performed.<\/span><\/p>\n<table width=\"532\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td valign=\"top\" width=\"71\"><strong><span style=\"font-family: Calibri;\">Operation<\/span><\/strong><\/td>\n<td valign=\"top\" width=\"462\"><strong><span style=\"font-family: Calibri;\">Description<\/span><\/strong><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"71\"><span style=\"font-family: Calibri;\">open<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Opens the file specified by the file parameter. The file can be an executable file, a document file, or a folder. Non-executable files are open in the associated application.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"71\"><span style=\"font-family: Calibri;\">edit<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Launches an editor and opens the document for editing. If the file argument does not specify an editable document file, the statement fails.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"71\"><span style=\"font-family: Calibri;\">explore<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Explores the folder specified by the file argument.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"71\"><span style=\"font-family: Calibri;\">find<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Initiates a search starting from the specified folder path.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"71\"><span style=\"font-family: Calibri;\">print<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Prints the document file specified by the file argument. If the specified file is not a printable document file, the statement fails.<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"91\"><span style=\"font-family: Calibri;\">mode<\/span><\/td>\n<td valign=\"top\" width=\"547\"><span style=\"font-family: Calibri;\">Integer Value [Optional]. <\/span><span style=\"font-family: Calibri;\">Specifies how the application is displayed when it opens. Default : 1<\/span><\/p>\n<table width=\"533\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td valign=\"top\" width=\"70\"><strong><span style=\"font-family: Calibri;\">Mode<\/span><\/strong><\/td>\n<td valign=\"top\" width=\"462\"><strong><span style=\"font-family: Calibri;\">Description<\/span><\/strong><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"70\"><span style=\"font-family: Calibri;\">0<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Hides the window and activates another window.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"70\"><span style=\"font-family: Calibri;\">1<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Activates and displays the window. If the window is minimized or maximized, the system restores it to its original size and position. Specify this flag when displaying the window for the first time.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"70\"><span style=\"font-family: Calibri;\">2<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Activates the window and displays it as a minimized window.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"70\"><span style=\"font-family: Calibri;\">3<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Activates the window and displays it as a maximized window.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"70\"><span style=\"font-family: Calibri;\">4<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Displays the window in its most recent size and position. The active window remains active.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"70\"><span style=\"font-family: Calibri;\">5<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Activates the window and displays it in its current size and position.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"70\"><span style=\"font-family: Calibri;\">6<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Minimizes the specified window and activates the next top-level window in the Z order.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"70\"><span style=\"font-family: Calibri;\">7<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Displays the window as a minimized window. The active window remains active.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"70\"><span style=\"font-family: Calibri;\">8<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Displays the window in its current state. The active window remains active.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"70\"><span style=\"font-family: Calibri;\">9<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Activates and displays the window. If the window is minimized or maximized, the system restores it to its original size and position. Specify this flag when restoring a minimized window.<\/span><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"70\"><span style=\"font-family: Calibri;\">10<\/span><\/td>\n<td valign=\"top\" width=\"462\"><span style=\"font-family: Calibri;\">Sets the show-state based on the state of the program that started the application.<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h4><strong>Examples : SystemUtil.Run<\/strong><\/h4>\n<p><em><strong>1. Using file argument:<\/strong><\/em><\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">\r\nSystemUtil.Run &quot;iexplore.exe&quot; 'opens internet explorer with default page\r\nSystemUtil.Run &quot;notepad.exe&quot; 'opens blank notepad window\r\nSystemUtil.Run &quot;notepad&quot; 'opens blank notepad window\r\nSystemUtil.Run &quot;D:\\AutomationRepository.txt&quot; 'since this is a non executable file, the file opens in the associated application i.e. notepad in this case\r\n<\/pre>\n<p><em><strong>2. Using params argument<\/strong><\/em><\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">\r\n'If 'file' argument is an executable file, then 'params' can be used to specify the arguments to the application\r\nSystemUtil.Run &quot;iexplore.exe&quot;, &quot;http:\/\/www.automationrepository.com&quot; 'opens Automation Repository in Internet Explorer browser\r\nSystemUtil.Run &quot;notepad.exe&quot;, &quot;D:\\SomeTextFile.txt&quot; 'opens the text file in notepad\r\n<\/pre>\n<p><em><strong>3. Using dir argument<\/strong><\/em><\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">\r\n'dir argument can be used to specify the default location of the application\r\nSystemUtil.Run &quot;iexplore.exe&quot;, &quot;&quot;, &quot;C:\\Program Files\\Internet Explorer\\&quot;\r\n<\/pre>\n<p><em><strong>4. Using op argument<\/strong><\/em><\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">\r\nSystemUtil.Run &quot;notepad.exe&quot;, &quot;D:\\AutomationRepository.txt&quot;, &quot;&quot;, &quot;open&quot; 'open a file\r\nSystemUtil.Run &quot;D:\\AutomationRepository.txt&quot;, &quot;&quot;, &quot;&quot;, &quot;edit&quot; 'open file in edit mode\r\n'Explore the folder specified by 'file' argument. Refer figure-1\r\nSystemUtil.Run &quot;My Computer&quot;, &quot;&quot;, &quot;&quot;, &quot;explore&quot;\r\n'Initiate a search starting from the specified folder path. Refer figure-2\r\nSystemUtil.Run &quot;D:\\&quot;, &quot;&quot;, &quot;&quot;, &quot;find&quot;\r\nSystemUtil.Run &quot;D:\\AutomationRepository.txt&quot;, &quot;&quot;, &quot;&quot;, &quot;print&quot; 'prints a document specified by 'file' argument\r\n<\/pre>\n<p><em><strong>5.Using mode argument<\/strong><\/em><\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">\r\nSystemUtil.Run &quot;notepad.exe&quot;, &quot;D:\\AutomationRepository.txt&quot;, &quot;&quot;, &quot;&quot;, 0 'the file is opened in hidden mode\r\nSystemUtil.Run &quot;notepad.exe&quot;, &quot;D:\\AutomationRepository.txt&quot;, &quot;&quot;, &quot;&quot;, 1 'activates and displays the window\r\nSystemUtil.Run &quot;notepad.exe&quot;, &quot;D:\\AutomationRepository.txt&quot;, &quot;&quot;, &quot;&quot;, 2 'opens the window in minimized state\r\n<\/pre>\n<div style=\"width: 701px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" title=\"Explore Folder\" src=\"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/explore-folder.png\" alt=\"Explore Folder\" width=\"691\" height=\"396\" \/><p class=\"wp-caption-text\">figure-1<\/p><\/div>\n<div style=\"width: 534px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" title=\"Find Window\" src=\"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/find-window.png\" alt=\"Find Window\" width=\"524\" height=\"514\" \/><p class=\"wp-caption-text\">figure-2<\/p><\/div>\n<\/div>\n<div style=\"font-family: Verdana,sans-serif; border: 1px solid #C8B560; padding: 3mm; background: #FFF8C6; text-align: center;\">\n<p>If you liked this article, you can join our blog to get free email updates directly in your inbox.<\/p>\n<form style=\"text-align: center;\" action=\"http:\/\/feedburner.google.com\/fb\/a\/mailverify\" method=\"post\" onsubmit=\"window.open('http:\/\/feedburner.google.com\/fb\/a\/mailverify?uri=automationrepository\/feeds', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true\" target=\"popupwindow\"><input style=\"width: 160px; height: 20px;\" onfocus=\"if (this.value == 'Enter Your Email Address') {this.value = '';}\" onblur=\"if (this.value == '') {this.value = 'Enter Your Email Address';}\" type=\"text\" value=\"Enter Your Email Address\" \/> <input type=\"hidden\" name=\"uri\" value=\"automationrepository\/feeds\" \/> <input type=\"hidden\" name=\"loc\" value=\"en_US\" \/> <input type=\"submit\" value=\"Join Us\" \/><\/p>\n<p style=\"text-align: justify;\">\n<\/form>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>SystemUtil.Run is an inbuilt QTP command that lets you run a file or an application. Mostly SystemUtil.Run command is used to open browser with a specific URL. But there is much more that can be done with it. Here in this article, you&#8217;ll see various examples on how to use SystemUtil.Run for different purposes.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4,9],"tags":[51],"class_list":["post-832","post","type-post","status-publish","format-standard","hentry","category-qtp-basic-stuff","category-qtp-concepts","tag-systemutil"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Understanding SystemUtil.Run syntax with examples - XX<\/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.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anish Pillai\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/\",\"url\":\"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/\",\"name\":\"Understanding SystemUtil.Run syntax with examples - XX\",\"isPartOf\":{\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/explore-folder.png\",\"datePublished\":\"2011-12-08T18:14:30+00:00\",\"dateModified\":\"2011-12-08T18:51:00+00:00\",\"author\":{\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/7a35710e1ce89e5fb481be88fcd6cd20\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/#primaryimage\",\"url\":\"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/explore-folder.png\",\"contentUrl\":\"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/explore-folder.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.automationrepository.com\/wordpress\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Understanding SystemUtil.Run syntax with examples\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/#website\",\"url\":\"https:\/\/www.automationrepository.com\/wordpress\/\",\"name\":\"XX\",\"description\":\"\\r\\nasas\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.automationrepository.com\/wordpress\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/7a35710e1ce89e5fb481be88fcd6cd20\",\"name\":\"Anish Pillai\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8aa984de2295c3c4078fa48f6ba5d91e7c849b1a27a11dca24c6f11dd673ba14?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8aa984de2295c3c4078fa48f6ba5d91e7c849b1a27a11dca24c6f11dd673ba14?s=96&d=mm&r=g\",\"caption\":\"Anish Pillai\"},\"description\":\"Find more about Anish Pillai on Google+\",\"sameAs\":[\"http:\/\/www.automationrepository.com\"],\"url\":\"https:\/\/www.automationrepository.com\/wordpress\/author\/anish\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Understanding SystemUtil.Run syntax with examples - XX","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.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/","twitter_misc":{"Written by":"Anish Pillai","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/","url":"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/","name":"Understanding SystemUtil.Run syntax with examples - XX","isPartOf":{"@id":"https:\/\/www.automationrepository.com\/wordpress\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/#primaryimage"},"image":{"@id":"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/explore-folder.png","datePublished":"2011-12-08T18:14:30+00:00","dateModified":"2011-12-08T18:51:00+00:00","author":{"@id":"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/7a35710e1ce89e5fb481be88fcd6cd20"},"breadcrumb":{"@id":"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/#primaryimage","url":"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/explore-folder.png","contentUrl":"https:\/\/www.automationrepository.com\/wordpress\/wp-content\/uploads\/ar\/explore-folder.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.automationrepository.com\/wordpress\/2011\/12\/understanding-systemutil-run-syntax-with-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.automationrepository.com\/wordpress\/"},{"@type":"ListItem","position":2,"name":"Understanding SystemUtil.Run syntax with examples"}]},{"@type":"WebSite","@id":"https:\/\/www.automationrepository.com\/wordpress\/#website","url":"https:\/\/www.automationrepository.com\/wordpress\/","name":"XX","description":"\r\nasas","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.automationrepository.com\/wordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/7a35710e1ce89e5fb481be88fcd6cd20","name":"Anish Pillai","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8aa984de2295c3c4078fa48f6ba5d91e7c849b1a27a11dca24c6f11dd673ba14?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8aa984de2295c3c4078fa48f6ba5d91e7c849b1a27a11dca24c6f11dd673ba14?s=96&d=mm&r=g","caption":"Anish Pillai"},"description":"Find more about Anish Pillai on Google+","sameAs":["http:\/\/www.automationrepository.com"],"url":"https:\/\/www.automationrepository.com\/wordpress\/author\/anish\/"}]}},"_links":{"self":[{"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/posts\/832","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/comments?post=832"}],"version-history":[{"count":25,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/posts\/832\/revisions"}],"predecessor-version":[{"id":870,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/posts\/832\/revisions\/870"}],"wp:attachment":[{"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/media?parent=832"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/categories?post=832"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/tags?post=832"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}