Thank you for taking the time to review this.
I have developed a script that scans a web page to verify if a specific text string is present. If it is not found, the script will loop. The issue I am facing is that I am required to input every single word of the string for the gotoif command to recognize it. Is there a way for the gotoif command to search for a variable that CONTAINS the specified string?
This is the code snippet I am currently using:
<tr>
<td>gotoIf</td>
<td>storedVars['activetext']=='This should trigger the gotoif'</td>
<td>silencemethod</td>
</tr>
Unfortunately, the mentioned code only activates the gotoif when the entire string matches exactly as specified.