Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
mscriptfunc [2016/09/22 02:36] 127.0.0.1 external edit |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | =====MScript Functions===== | ||
- | |||
- | //MScript Functions// are provided by //system// and // | ||
- | |||
- | There are 5 types of MScript functions: | ||
- | - [[http:// | ||
- | - [[User Defined Functions]] - functions defined by the user within a model. | ||
- | - //Plugin Functions// - functions provided by the plugin, only available when the plugin is activated for the model | ||
- | - //Plugin Driver Functions// - functions provided by the native driver used by the plugin, for example // | ||
- | - //User MScript Functions// - functions provided by a java class written by users to extend MScript capability that can be imported into models | ||
- | |||
- | ---- | ||
- | ==== Plugins & MScript Functions ==== | ||
- | |||
- | - [[http:// | ||
- | - [[http:// | ||
- | - [[http:// | ||
- | - [[http:// | ||
- | - [[http:// | ||
- | - [[http:// | ||
- | - [[http:// | ||
- | - [[http:// | ||
- | - [[http:// | ||
- | - [[http:// | ||
- | - [[http:// | ||
- | - [[http:// | ||
- | - [[http:// | ||
- | |||
- | With //Selenium, WinUIA, JavaUIA and XUIA// plugins, you may send keyboard function keys through MScript. | ||
- | |||
- | |||
- | ---- | ||
- | ==== Calling Functions ==== | ||
- | Except [[User Defined Functions]], | ||
- | <log msg=" | ||
- | |||
- | The above mscript tag calls the function named //myFunc//, it passes two parameters to the function as required by this specific function and the return value from the function call is then concatenated with //Calling MyFunc, return value: // and printed to the MScript log file. | ||
- | |||
- | All parameters must be enclosed by a set of single quotes. | ||
- | |||
- | If the parameter value contains single quotes, those single quotes in the expression value do need to be escaped (prefixed) with " | ||
- | |||
- | <action code=" | ||
- | |||
- | Notice that the single quotes around " | ||
- | |||
- | === Function Parameters=== | ||
- | Function can have parameters. Parameter values are passe by position, for example // | ||
- | |||
- | Most functions require some parameters while some don' | ||
- | |||
- | === Function Return Value === | ||
- | Functions may have return value as the one above or may not have return value. | ||
- | |||
- | The return value can then be concatenated with other text string to form new text string as shown in the example above. | ||
- | |||
- | Calling to a function that does not have return value will return an empty string. | ||
- | |||
- | |||
- | === Nested Function Call=== | ||
- | You may nest the function call within the same mscript expression. | ||
- | <log msg=" | ||
- | |||
- | In the above example, function call // | ||
- | |||
- | There is no limit of how many levels for the nested function calls. | ||
- | | ||
- | |||
- | ---- | ||
- | ==== User Defined Functions ==== | ||
- | [[User Defined Functions]] are functions define in // | ||
- | |||
- | Within // | ||
- | <func name=" | ||
- | ... mscript tags ... | ||
- | </ | ||
- | |||
- | Within the function //myFunc//, you can retrieve the parameters passed to the function by calling mscript function // | ||
- | <func name=" | ||
- | <log msg=" | ||
- | </ | ||
- | |||
- | [[User Defined Functions]] can return a value. To set the return value, call mscript function // | ||
- | <func name=" | ||
- | <action code=" | ||
- | </ | ||
- | |||
- | User defined functions can be shared with other models with the following MScript: | ||
- | | ||
- | |||
- | The above MScript will include all user defined functions from the model called // | ||
- | |||
- | === Calling User Defined Functions=== | ||
- | [[User Defined Functions]] are functions define in // | ||
- | | ||
- | [[User Defined Functions]] can be shared with other models using // | ||
- | |||
- | To call [[User Defined Functions]] use the following syntax: | ||
- | | ||
- | where //p1// and //p2// are the parameter names and //v1// and //v2// are the parameter values for the corresponding parameters. | ||
- | |||
- | [[User Defined Functions]] can return a value. The return value is then concatenated with other static string just like other function calls as described earlier. | ||
- | |||
- | |||
- | === Recursive Call=== | ||
- | [[user_defined_functions|User Definfed Functions]] can recursively call itself. | ||
- | |||
- | |||
- | ---- | ||
- | ==== Plugin Functions ==== | ||
- | //Plugin Functions// are functions provided by the plugins which are specifically designed to interact with different type of AUT. Besides // | ||
- | |||
- | For example [[selenium_plugin|SeleniumPlugin]] provides a set of functions to allow you to drive web applications as show in the following: | ||
- | < | ||
- | The // | ||
- | |||
- | Please note that // | ||
- | |||
- | ---- | ||
- | ==== Plugin Native Driver Functions ==== | ||
- | Some plugin uses 3rd party drivers to accomplish specific task, typically to interact with the AUT. For example [[selenium_plugin|SeleniumPlugin]] uses // | ||
- | |||
- | Each plugin has the option to expose the functions provided by the driver that it uses. Not all plugins uses 3rd party drivers, neither do all plugins expose functions from the driver. Please refer to the specific plugin documentation page listed above for more information about the native functions exposed by the plugin. | ||
- | |||
- | To call a native function, you must add a prefix underscore (_) to the native function name as shown in the following example: | ||
- | < | ||
- | |||
- | ---- | ||
- | ==== User MScript Functions ==== | ||
- | //User MScript Functions// are functions that you implement by writing a simple java class. | ||
- | |||
- | The java class just need to provide the constructor in the following signature: | ||
- | public MScriptImpl2(MbtScriptExecutor scrfiptExec_p) | ||
- | | ||
- | For each model, you can declare MScriptImpl java class in // | ||
- | <action code=" | ||
- | or | ||
- | <action code=" | ||
- | | ||
- | The first syntax requires that you have compiled your java class into jar file and deployed it to ''/ | ||
- | | ||
- | All of the public functions declared in your java class // | ||
- | <action code=" | ||
- | Notice the prefix of underscore (_) is required before the function name. | ||
- | |||
- | //User MScript Functions// can return a String value. | ||
- | |||
- | ---- | ||
- | ==== Element Locator & Special Char Encoding ==== | ||
- | |||
- | If you plan to use xpath to locate the element on HTML page and have trouble finding the correct xpath string, you may want to check out [[WebMBT Builder | WebMBT Builder]] and [[UIRepo | UIRepo]] firefox add-on. | ||
- | |||
- | In some rare case some special characters may cause problem to the mScript interpreter, | ||