-
-
Save codepreneur/0897834d9a1c018bea94 to your computer and use it in GitHub Desktop.
Revisions
-
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -107,7 +107,7 @@ "!WAITPAGECOMPLETE" // If this variable is set to YES iMacros will wait until the top frame is completely loaded. // 3. Scripting Interface Commands. ret_code = iimOpen(String commandLine [, boolean openNewBrowser] [, int timeout]); // Initializes the Scripting Interface. It opens a new instance of the iMacros Browser, IE or Firefox, or connects to an existing instance (depending on the specified parameters). If the command fails for any reason it returns an error code. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -111,7 +111,7 @@ ret_code = iimOpen(String commandLine [, boolean openNewBrowser] [, int timeout]); // Initializes the Scripting Interface. It opens a new instance of the iMacros Browser, IE or Firefox, or connects to an existing instance (depending on the specified parameters). If the command fails for any reason it returns an error code. ret_code = iimDisplay(String message [, int timeout]); // Displays a short message in the iMacros browser. A typical usage would be to distinguish several running iMacros Browsers or display information on the current position within the script. ret_code = iimPlay(String macro [, int timeout]); // Plays a macro. After the macro has played all options that have been set with the iimSet command are reset. Use iimGetLastExtract to get the extracted text. ret_code = iimSet(String VARNAME, String VARVALUE); // Defines variables for use inside the macro and assigns values to them. ret_code = iimTakeBrowserScreenshot(String FILEPATH, int 0/1); // Takes a screenshot of the current browser content or the current website. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 9 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,8 +4,8 @@ // iMacros supports 3 types of variables: // * The macro variables !VAR0 thru !VAR9. They can be used with the SET and ADD command inside a macro. // * Built-in variables. They contain certain values set by iMacros. // * User-defined variables. They are defined in-macro using the SET command. // 1. iMacros Commands Reference. @@ -116,3 +116,10 @@ ret_code = iimPlay(String macro [, int timeout]); ret_code = iimSet(String VARNAME, String VARVALUE); // Defines variables for use inside the macro and assigns values to them. ret_code = iimTakeBrowserScreenshot(String FILEPATH, int 0/1); // Takes a screenshot of the current browser content or the current website. ret_code = iimClose([int timeout]); // Closes the iMacros browser. ret = iimGetStopwatch(int index, string name, string value); // Returns the data of the STOPWATCH command. If there is no STOPWATCH command in the macro then iimGetStopwatch returns only one value ("Total Runtime"). err_message = iimGetErrorText(); // Returns the text associated with the last error. extract = iimGetExtract([int index_of_extracted_text]); // Returns the contents of the !EXTRACT variable. macro_node = iimGetPerfomance(); // Returns the XML fragment containing the performance data of the last macro run, if performance logging has been enabled. version_number = iimGetInterfaceVersion(); // It returns a number in LONG format such as 80066532. Note that the iMacros main version number (as shown by VERSION) and the Scripting Interface version number as shown by iimGetInterfaceVersion are not identical. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 0 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -116,9 +116,3 @@ ret_code = iimPlay(String macro [, int timeout]); ret_code = iimSet(String VARNAME, String VARVALUE); // Defines variables for use inside the macro and assigns values to them. ret_code = iimTakeBrowserScreenshot(String FILEPATH, int 0/1); // Takes a screenshot of the current browser content or the current website. ret_code = iimClose([int timeout]); // Closes the iMacros browser. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 0 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -122,6 +122,3 @@ err_message = iimGetErrorText(); // Returns the tex extract = iimGetExtract([int index_of_extracted_text]); // Returns the contents of the !EXTRACT variable. macro_node = iimGetPerfomance(); // Returns the XML fragment containing the performance data of the last macro run, if performance logging has been enabled. version_number = iimGetInterfaceVersion(); // It returns a number in LONG format such as 80066532. Note that the iMacros main version number (as shown by VERSION) and the Scripting Interface version number as shown by iimGetInterfaceVersion are not identical. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -124,3 +124,4 @@ macro_node = iimGetPerfomance(); // Returns the XML version_number = iimGetInterfaceVersion(); // It returns a number in LONG format such as 80066532. Note that the iMacros main version number (as shown by VERSION) and the Scripting Interface version number as shown by iimGetInterfaceVersion are not identical. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 10 additions and 12 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -112,17 +112,15 @@ ret_code = iimOpen(String commandLine [, boolean openNewBrowser] [, int timeout]); // Initializes the Scripting Interface. It opens a new instance of the iMacros Browser, IE or Firefox, or connects to an existing instance (depending on the specified parameters). If the command fails for any reason it returns an error code. ret_code = iimDisplay(String message [, int timeout]): // Displays a short message in the iMacros browser. A typical usage would be to distinguish several running iMacros Browsers or display information on the current position within the script. ret_code = iimPlay(String macro [, int timeout]); // Plays a macro. After the macro has played all options that have been set with the iimSet command are reset. Use iimGetLastExtract to get the extracted text. ret_code = iimSet(String VARNAME, String VARVALUE); // Defines variables for use inside the macro and assigns values to them. ret_code = iimTakeBrowserScreenshot(String FILEPATH, int 0/1); // Takes a screenshot of the current browser content or the current website. ret_code = iimClose([int timeout]); // Closes the iMacros browser. ret = iimGetStopwatch(int index, string name, string value); // Returns the data of the STOPWATCH command. If there is no STOPWATCH command in the macro then iimGetStopwatch returns only one value ("Total Runtime"). err_message = iimGetErrorText(); // Returns the text associated with the last error. extract = iimGetExtract([int index_of_extracted_text]); // Returns the contents of the !EXTRACT variable. macro_node = iimGetPerfomance(); // Returns the XML fragment containing the performance data of the last macro run, if performance logging has been enabled. version_number = iimGetInterfaceVersion(); // It returns a number in LONG format such as 80066532. Note that the iMacros main version number (as shown by VERSION) and the Scripting Interface version number as shown by iimGetInterfaceVersion are not identical. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -122,6 +122,7 @@ ret_code = iimSet(String VARNAME, String VARVALUE); // Defines variables fo ret_code = iimTakeBrowserScreenshot(String FILEPATH, int 0/1); // Takes a screenshot of the current browser content or the current website. ret = iimGetStopwatch(int index, string name, string value); // Returns the data of the STOPWATCH command. If there is no STOPWATCH command in the macro then iimGetStopwatch returns only one value ("Total Runtime"). macro_node = iimGetPerfomance(); // Returns the XML fragment containing the performance data of the last macro run, if performance logging has been enabled. ret_code = iimClose([int timeout]); // Closes the iMacros browser. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -124,3 +124,4 @@ ret = iimGetStopwatch(int index, string name, string value); // Returns the d macro_node = iimGetPerfomance(); // Returns the XML fragment containing the performance data of the last macro run, if performance logging has been enabled. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -119,7 +119,8 @@ extract = iimGetExtract([int index_of_extracted_text]); // Returns the contents ret_code = iimPlay(String macro [, int timeout]); // Plays a macro. After the macro has played all options that have been set with the iimSet command are reset. Use iimGetLastExtract to get the extracted text. ret_code = iimSet(String VARNAME, String VARVALUE); // Defines variables for use inside the macro and assigns values to them. ret_code = iimTakeBrowserScreenshot(String FILEPATH, int 0/1); // Takes a screenshot of the current browser content or the current website. ret = iimGetStopwatch(int index, string name, string value); // Returns the data of the STOPWATCH command. If there is no STOPWATCH command in the macro then iimGetStopwatch returns only one value ("Total Runtime"). macro_node = iimGetPerfomance(); // Returns the XML fragment containing the performance data of the last macro run, if performance logging has been enabled. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -119,7 +119,7 @@ extract = iimGetExtract([int index_of_extracted_text]); // Returns the contents ret_code = iimPlay(String macro [, int timeout]); // Plays a macro. After the macro has played all options that have been set with the iimSet command are reset. Use iimGetLastExtract to get the extracted text. ret_code = iimSet(String VARNAME, String VARVALUE); // Defines variables for use inside the macro and assigns values to them. ret_code = iimTakeBrowserScreenshot(String FILEPATH, int 0/1); // Takes a screenshot of the current browser content or the current website. ret_code = iimGetStopwatch(int index, string name, string value); // Returns the data of the STOPWATCH command. If there is no STOPWATCH command in the macro then iimGetStopwatch returns only one value ("Total Runtime"). -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -119,4 +119,7 @@ extract = iimGetExtract([int index_of_extracted_text]); // Returns the contents ret_code = iimPlay(String macro [, int timeout]); // Plays a macro. After the macro has played all options that have been set with the iimSet command are reset. Use iimGetLastExtract to get the extracted text. ret_code = iimSet(String VARNAME, String VARVALUE); // Defines variables for use inside the macro and assigns values to them. ret_code = iimTakeBrowserScreenshot(String FILEPATH, int 0/1); // Takes a screenshot of the current browser content or the current website. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -119,3 +119,4 @@ extract = iimGetExtract([int index_of_extracted_text]); // Returns the contents ret_code = iimPlay(String macro [, int timeout]); // Plays a macro. After the macro has played all options that have been set with the iimSet command are reset. Use iimGetLastExtract to get the extracted text. ret_code = iimSet(String VARNAME, String VARVALUE); // Defines variables for use inside the macro and assigns values to them. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -116,6 +116,6 @@ ret_code = iimDisplay(String message [, int timeout]): version_number = iimGetInterfaceVersion(); // It returns a number in LONG format such as 80066532. Note that the iMacros main version number (as shown by VERSION) and the Scripting Interface version number as shown by iimGetInterfaceVersion are not identical. err_message = iimGetErrorText(); // Returns the text associated with the last error. extract = iimGetExtract([int index_of_extracted_text]); // Returns the contents of the !EXTRACT variable. ret_code = iimPlay(String macro [, int timeout]); // Plays a macro. After the macro has played all options that have been set with the iimSet command are reset. Use iimGetLastExtract to get the extracted text. ret_code = iimSet(String VARNAME, String VARVALUE); // Defines variables for use inside the macro and assigns values to them. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 7 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -110,10 +110,12 @@ // 3. Scripting Interface Command Overview. ret_code = iimOpen(String commandLine [, boolean openNewBrowser] [, int timeout]); // Initializes the Scripting Interface. It opens a new instance of the iMacros Browser, IE or Firefox, or connects to an existing instance (depending on the specified parameters). If the command fails for any reason it returns an error code. ret_code = iimDisplay(String message [, int timeout]): // Displays a short message in the iMacros browser. A typical usage would be to distinguish several running iMacros Browsers or display information on the current position within the script. version_number = iimGetInterfaceVersion(); // It returns a number in LONG format such as 80066532. Note that the iMacros main version number (as shown by VERSION) and the Scripting Interface version number as shown by iimGetInterfaceVersion are not identical. err_message = iimGetErrorText(); // Returns the text associated with the last error. extract = iimGetExtract([int index_of_extracted_text]); // Returns the contents of the !EXTRACT variable. ret_code = iimPlay (String macro [, int timeout]); // Plays a macro. After the macro has played all options that have been set with the iimSet command are reset. Use iimGetLastExtract to get the extracted text. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -114,6 +114,6 @@ int ret_code = iimOpen(String commandLine [, boolean openNewBrowser] [, int time int ret_code = iimDisplay(String message [, int timeout]): // Displays a short message in the iMacros browser. A typical usage would be to distinguish several running iMacros Browsers or display information on the current position within the script. long version_number = iimGetInterfaceVersion(); // It returns a number in LONG format such as 80066532. Note that the iMacros main version number (as shown by VERSION) and the Scripting Interface version number as shown by iimGetInterfaceVersion are not identical. String err_message = iimGetErrorText(); // Returns the text associated with the last error. String extract = iimGetExtract([int index_of_extracted_text]); // Returns the contents of the !EXTRACT variable. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -115,3 +115,5 @@ int ret_code = iimDisplay(String message [, int timeout]): // Displays a short long version_number = iimGetInterfaceVersion(); // It returns a number in LONG format such as 80066532. Note that the iMacros main version number (as shown by VERSION) and the Scripting Interface version number as shown by iimGetInterfaceVersion are not identical. String err_message = iimGetErrorText(); // Returns the text associated with the last error. String extract = iimGetExtract([int index_of_extracted_text]); // Returns the contents of the !EXTRACT variable. If the last command was iimPlay and if EXTRACT is used inside a macro iimGetExtract returns the extracted text. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -111,7 +111,7 @@ int ret_code = iimOpen(String commandLine [, boolean openNewBrowser] [, int timeout]); // Initializes the Scripting Interface. It opens a new instance of the iMacros Browser, IE or Firefox, or connects to an existing instance (depending on the specified parameters). If the command fails for any reason it returns an error code. int ret_code = iimDisplay(String message [, int timeout]): // Displays a short message in the iMacros browser. A typical usage would be to distinguish several running iMacros Browsers or display information on the current position within the script. long version_number = iimGetInterfaceVersion(); // It returns a number in LONG format such as 80066532. Note that the iMacros main version number (as shown by VERSION) and the Scripting Interface version number as shown by iimGetInterfaceVersion are not identical. String err_message = iimGetErrorText(); // Returns the text associated with the last error. String extract = iimGetExtract([int index_of_extracted_text]); // Returns the contents of the !EXTRACT variable. If the last command was iimPlay and if EXTRACT is used inside a macro iimGetExtract returns the extracted text. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 3 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -110,9 +110,8 @@ // 3. Scripting Interface Command Overview. int ret_code = iimOpen(String commandLine [, boolean openNewBrowser] [, int timeout]); // Initializes the Scripting Interface. It opens a new instance of the iMacros Browser, IE or Firefox, or connects to an existing instance (depending on the specified parameters). If the command fails for any reason it returns an error code. int ret_code = iimDisplay (String message [, int timeout]): // Displays a short message in the iMacros browser. A typical usage would be to distinguish several running iMacros Browsers or display information on the current position within the script. long version_number = iimGetInterfaceVersion() // It returns a number in LONG format such as 80066532. Note that the iMacros main version number (as shown by VERSION) and the Scripting Interface version number as shown by iimGetInterfaceVersion are not identical. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -110,7 +110,8 @@ // 3. Scripting Interface Command Overview. int ret_code = iimOpen( String commandLine [, boolean openNewBrowser] [, int timeout]) // Initializes the Scripting Interface. It opens a new instance of the iMacros Browser, IE or Firefox, or connects to an existing instance (depending on the specified parameters). If the command fails for any reason it returns an error code. int ret_code = iimDisplay ( String message [, int timeout] ) // Displays a short message in the iMacros browser. A typical usage would be to distinguish several running iMacros Browsers or display information on the current position within the script. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 8 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -107,3 +107,11 @@ "!WAITPAGECOMPLETE" // If this variable is set to YES iMacros will wait until the top frame is completely loaded. // 3. Scripting Interface Command Overview. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -103,4 +103,7 @@ "!TIMEOUT_STEP" // Sometimes text or images do not appear immediatly after a page is loaded. "!URLCURRENT" // Contains the current URL. This is the URL visible in the browser address bar at the time the variable is used. "!USERAGENT" // Change the default user agent of the web browser. "!VAR0...!VAR9" // Standard built-in variables for arbitrary use. "!WAITPAGECOMPLETE" // If this variable is set to YES iMacros will wait until the top frame is completely loaded. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -103,6 +103,4 @@ "!TIMEOUT_STEP" // Sometimes text or images do not appear immediatly after a page is loaded. "!URLCURRENT" // Contains the current URL. This is the URL visible in the browser address bar at the time the variable is used. "!USERAGENT" // Change the default user agent of the web browser. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -103,5 +103,6 @@ "!TIMEOUT_STEP" // Sometimes text or images do not appear immediatly after a page is loaded. "!URLCURRENT" // Contains the current URL. This is the URL visible in the browser address bar at the time the variable is used. "!USERAGENT" // Change the default user agent of the web browser. "!VAR0...!VAR9" // Standard built-in variables for arbitrary use. "!WAITPAGECOMPLETE" // If this variable is set to YES iMacros will wait until the top frame is completely loaded. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -102,5 +102,6 @@ "!TIMEOUT_PAGE" // Set the page load timeout in seconds. "!TIMEOUT_STEP" // Sometimes text or images do not appear immediatly after a page is loaded. "!URLCURRENT" // Contains the current URL. This is the URL visible in the browser address bar at the time the variable is used. "!USERAGENT" // Change the default user agent of the web browser. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -101,6 +101,6 @@ "!TIMEOUT_MACRO" // Set the macro's global timeout in seconds. "!TIMEOUT_PAGE" // Set the page load timeout in seconds. "!TIMEOUT_STEP" // Sometimes text or images do not appear immediatly after a page is loaded. "!URLCURRENT" // Contains the current URL. This is the URL visible in the browser address bar at the time the variable is used. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -103,3 +103,4 @@ "!TIMEOUT_STEP" // Sometimes text or images do not appear immediatly after a page is loaded. "!URLCURRENT" // Contains the current URL. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -101,5 +101,5 @@ "!TIMEOUT_MACRO" // Set the macro's global timeout in seconds. "!TIMEOUT_PAGE" // Set the page load timeout in seconds. "!TIMEOUT_STEP" // Sometimes text or images do not appear immediatly after a page is loaded. "!URLCURRENT" // Contains the current URL. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -101,5 +101,5 @@ "!TIMEOUT_MACRO" // Set the macro's global timeout in seconds. "!TIMEOUT_PAGE" // Set the page load timeout in seconds. "!TIMEOUT_STEP" // Sometimes text or images do not appear immediatly after a page is loaded. "!URLCURRENT" // Contains the current URL. This is the URL visible in the browser address bar at the time the variable is used. -
Julien Le Coupanec revised this gist
Aug 13, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -98,8 +98,8 @@ "!TAGSOURCEINDEX" // Retrieves the ordinal position of the object, in source order, as the object appears in the document's all collection. "!TAGX" // This value contains the X-coordinate of the HTML element found with the TAG command. The !TAGX/!TAGY values are automatically set after each TAG command. "!TAGY" // This value contains the Y-coordinate of the HTML element found with the last TAG command. "!TIMEOUT_MACRO" // Set the macro's global timeout in seconds. "!TIMEOUT_PAGE" // Set the page load timeout in seconds. "!TIMEOUT_STEP" // Sometimes text or images do not appear immediatly after a page is loaded.
NewerOlder