|
Post by leiwang on Dec 22, 2017 9:26:45 GMT
We have provided an ability to handle step's attribute and each parameter's attributes when executing sebuilder html script.
To ignore a step for certain browser, we just need to add attribute 'ignoredBrowser=browsers to ignore', such as below:
<tr ignoredBrowser="internet explorer"> <td>runScript</td> <td>javascript{alert('baseurl');}</td> <td></td> </tr> This step will not be executed in IE, but it will be executed in other browsers.
Multiple browsers can be specified in the attribute using commas (,) as separators:
<tr ignoredBrowser="chrome, firefox"> <td>runScript</td> <td>javascript{alert('baseurl');}</td> <td></td> </tr>
|
|