...
The command takeScreenshot
takes a screenshot that will be visible in the Check Details. The command will insert an additional screenshot onto the page in addition to whatever screenshots have been added in the Edit Check settings. This command is helpful when troubleshooting scripts as it gives a snapshot of what exactly happens at a particular step.
getDictionary
See Storing Information Using the ASM Dictionary.
Limitations of Selenium IDE within ASM Scenarios
...
Command | Target | Value |
| | |
The “value” of the command corresponds to the ASCII “Oct” value of the key you are trying to press; see https://www.asciitable.com/ for a full list. Some examples of values which correspond to keys include the following:
\10 corresponds to “backspace”
\9 corresponds to “tab”
JavaScript Execution
Selenium WebDriver’s JavascriptExecutor
will wrap all JavaScript and evaluate it as an anonymous expression. Therefore, the “return” keyword must be used when executing JavaScript within the “Target” field in an ASM scenario. For example, the command browserbot.getCurrentWindow().document.title
in Selenium becomes return document.title;
in an ASM Scenario.
...